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