Popularity
8.5
Stable
Activity
0.0
Stable
7
24
7

Monthly Downloads: 34
Programming language: Haskell
License: MIT License
Tags: Monad     Logging    
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?

Add another 'monad' Package

README

Monad Logger for Syslog

TravisCI Hackage

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!")