blob: f55e2e79d61280bbe6d8c40435e0380844b3797b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module Logging where
import qualified Data.ByteString.Lazy.Char8 as L
import qualified Data.ByteString.Char8 as S
import qualified Data.Text.IO as Text
import qualified Debug.Trace as Debug
debugStr str = putStrLn str
debugL bs = L.putStrLn bs
debugS bs = S.putStrLn bs
debugText text = Text.putStrLn text
trace str a = Debug.trace str a
|