Popularity
8.4
Declining
Activity
0.0
Stable
7
24
7
Monthly Downloads: 42
Programming language: Haskell
License: MIT License
Latest version: v0.1.6.0
monad-logger-syslog alternatives and similar packages
Based on the "monad" category.
Alternatively, view monad-logger-syslog alternatives based on common mentions on social networks and blogs.
Do you think we are missing an alternative of monad-logger-syslog or a related project?
Popular Comparisons
README
Monad Logger for Syslog
Install
cabal install monad-logger-syslog
Usage (example)
Default to syslog user
facility with name hslogger
import Control.Monad.Logger ( logDebugN )
import Control.Monad.Logger.Syslog ( runSyslogLoggingT )
main :: IO ()
main = runSyslogLoggingT (logDebugN "HELLO!")
Log under Local1
facility with name mylogger
import Control.Monad.Logger ( logDebugN )
import Control.Monad.Logger.Syslog ( runCustomSyslogLoggingT )
main :: IO ()
main = runCustomSyslogLoggingT "mylogger" Local1 (logDebugN "HELLO!")