simple-log 0.9.0 → 0.9.1
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
- simple-log.cabal +1/−1
- src/System/Log/Simple/Stream.hs +1/−1
simple-log.cabal view
@@ -1,5 +1,5 @@ Name: simple-log -Version: 0.9.0 +Version: 0.9.1 Synopsis: Simple log for Haskell Description: Log library for Haskell License: BSD3
src/System/Log/Simple/Stream.hs view
@@ -22,7 +22,7 @@ coloredStream ∷ Handle → Consumer Formatted coloredStream h = do liftIO $ hSetEncoding h utf8 - return $ \f → hColored h f >> hFlush h + return $ \f → hColoredLine h f >> hFlush h coloredConsole ∷ Consumer Formatted coloredConsole = coloredStream stderr