setLevel :: a -> Priority -> a |
Sets the log level. handle will drop
items beneath this level.
|
|
getLevel :: a -> Priority |
Gets the current level.
|
|
setFormatter :: a -> LogFormatter a -> a |
Set a log formatter to customize the log format for this Handler
|
|
getFormatter :: a -> LogFormatter a |
|
handle :: a -> LogRecord -> String -> IO () |
Logs an event if it meets the requirements
given by the most recent call to setLevel.
|
|
emit :: a -> LogRecord -> String -> IO () |
Forces an event to be logged regardless of
the configured level.
|
|
close :: a -> IO () |
Closes the logging system, causing it to close
any open files, etc.
|