monad-logger-0.3.16: A class of monads which can log messages.

Safe HaskellTrustworthy
LanguageHaskell98

Control.Monad.Logger

Contents

Description

This module provides the facilities needed for a decoupled logging system.

The MonadLogger class is implemented by monads that give access to a logging facility. If you're defining a custom monad, then you may define an instance of MonadLogger that routes the log messages to the appropriate place (e.g., that's what yesod-core's GHandler does). Otherwise, you may use the LoggingT monad included in this module (see runStderrLoggingT). To simply discard log message, use NoLoggingT.

As a user of the logging facility, we provide you some convenient Template Haskell splices that use the MonadLogger class. They will record their source file and position, which is very helpful when debugging. See logDebug for more information.

Synopsis

MonadLogger

class Monad m => MonadLogger m where Source

A Monad which has the ability to log messages in some manner.

Minimal complete definition

Nothing

Methods

monadLoggerLog :: ToLogStr msg => Loc -> LogSource -> LogLevel -> msg -> m () Source

class (MonadLogger m, MonadIO m) => MonadLoggerIO m where Source

An extension of MonadLogger for the common case where the logging action is a simple IO action. The advantage of using this typeclass is that the logging function itself can be extracted as a first-class value, which can make it easier to manipulate monad transformer stacks, as an example.

Since 0.3.10

Minimal complete definition

Nothing

Methods

askLoggerIO :: m (Loc -> LogSource -> LogLevel -> LogStr -> IO ()) Source

Request the logging function itself.

Since 0.3.10

Re-export from fast-logger

data LogStr :: *

Log message builder. Use (<>) to append two LogStr in O(1).

Helper transformer

runStderrLoggingT :: MonadIO m => LoggingT m a -> m a Source

Run a block using a MonadLogger instance which prints to stderr.

Since 0.2.2

runStdoutLoggingT :: MonadIO m => LoggingT m a -> m a Source

Run a block using a MonadLogger instance which prints to stdout.

Since 0.2.2

withChannelLogger Source

Arguments

:: (MonadBaseControl IO m, MonadIO m) 
=> Int

Number of messages to keep

-> LoggingT m a 
-> LoggingT m a 

Within the LoggingT monad, capture all log messages to a bounded channel of the indicated size, and only actually log them if there is an exception.

Since 0.3.2

filterLogger :: (LogSource -> LogLevel -> Bool) -> LoggingT m a -> LoggingT m a Source

Only log messages passing the given predicate function.

This can be a convenient way, for example, to ignore debug level messages.

Since 0.3.13

TH logging

logDebug :: Q Exp Source

Generates a function that takes a Text and logs a LevelDebug message. Usage:

$(logDebug) "This is a debug log message"

logOther :: Text -> Q Exp Source

Generates a function that takes a Text and logs a LevelOther message. Usage:

$(logOther "My new level") "This is a log message"

TH logging with source

logDebugS :: Q Exp Source

Generates a function that takes a LogSource and Text and logs a LevelDebug message. Usage:

$logDebugS "SomeSource" "This is a debug log message"

logOtherS :: Q Exp Source

Generates a function that takes a LogSource, a level name and a Text and logs a LevelOther message. Usage:

$logOtherS "SomeSource" "My new level" "This is a log message"

TH util

liftLoc :: Loc -> Q Exp Source

Lift a location into an Exp.

Since 0.3.1

Non-TH logging

Non-TH logging with source

logInfoNS :: MonadLogger m => Text -> Text -> m () Source

logWarnNS :: MonadLogger m => Text -> Text -> m () Source

utilities for defining your own loggers

data Loc :: *

Instances

Eq Loc 
Data Loc 
Ord Loc 
Show Loc 
Generic Loc 
type Rep Loc = D1 D1Loc (C1 C1_0Loc ((:*:) ((:*:) (S1 S1_0_0Loc (Rec0 String)) (S1 S1_0_1Loc (Rec0 String))) ((:*:) (S1 S1_0_2Loc (Rec0 String)) ((:*:) (S1 S1_0_3Loc (Rec0 CharPos)) (S1 S1_0_4Loc (Rec0 CharPos))))))