diff options
Diffstat (limited to 'Biz/Log.hs')
-rw-r--r-- | Biz/Log.hs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -9,6 +9,7 @@ module Biz.Log info, warn, fail, + wipe, -- * Debugging mark, @@ -72,6 +73,9 @@ gap = ": " br :: IO () br = Rainbow.hPutChunks stderr ["\n"] >> IO.hFlush stderr +wipe :: IO () +wipe = hPutStr stderr ("\r" :: Text) >> IO.hFlush stderr + good, pass, info, warn, fail :: [Text] -> IO () good = msg Good pass = msg Pass |