hslogger-template

Library for generating hslogger functions using Template Haskell.


Keywords
library, public-domain, Propose Tags, , Index, System.Log.Logger.TH, hslogger-template-2.0.4.tar.gz, browse, Package description, Package maintainers, BrianLewis, edit package information
License
Other
Install
cabal install hslogger-template-2.0.4

Documentation

hslogger-template generates hslogger functions using Template Haskell. The generated functions specify the name of the current module, so you don't have to.

Example:

module Foo.Bar ( ... ) where

import System.Log.Logger.TH (deriveLoggers)
import qualified System.Log.Logger as HSL

$(deriveLoggers "HSL" [HSL.DEBUG, HSL.INFO])

Used this way, deriveLoggers would generate the following functions:

infoM :: MonadIO m => String -> m ()
infoM s = liftIO (HSL.infoM "Foo.Bar" s)

debugM :: MonadIO m => String -> m ()
debugM s = liftIO (HSL.debugM "Foo.Bar" s)

The other hslogger priorities follow the same pattern.