debug-dump-0.1.0.1: src/Debug/Trace/Dump.hs
module Debug.Trace.Dump
( traceFile
, traceFileBSL
, traceFileText
) where
import qualified Data.ByteString.Lazy as BSL
import Data.Functor (($>))
import qualified Data.Text as T
import qualified Data.Text.IO as TIO
import System.IO.Unsafe (unsafePerformIO)
traceFileBSL :: FilePath -> BSL.ByteString -> a -> a
traceFileBSL fp bytes x = unsafePerformIO $
bytes `seq` BSL.writeFile fp bytes $> x
traceFileText :: FilePath -> T.Text -> a -> a
traceFileText fp txt x = unsafePerformIO $
txt `seq` TIO.writeFile fp txt $> x
traceFile :: FilePath -> String -> a -> a
traceFile fp str x = unsafePerformIO $
str `seq` writeFile fp str $> x