heavy-logger-0.3.2.2: Full-weight logging based on fast-logger
Safe HaskellNone
LanguageHaskell2010

System.Log.Heavy

Description

This is the main module of heavy-logger package. In most cases, you need to import this module. You will also need other modules in specific cases. All modules that are required always are re-exported by this module.

Example of usage is:

 import System.Log.Heavy
 import System.Log.Heavy.Shortcuts
 import Data.Text.Format.Heavy
 ...

 withLoggingT settings $ do
     liftIO $ putStr "Your name? "
     liftIO $ hFlush stdout
     name <- liftIO $ getLine
     info "name was {}" (Single name)
     liftIO $ putStrLn $ "Hello, " ++ name

Please refer to examples/ directory for compiling examples.

There are, in general, following ways to use this package:

  • Use LoggingT monad transformer. It can be the simplest, if you already have monadic transformers stack of 1-2 transformers and you do not mind to add yet another. With LoggingT, you do not need to write any adapter instances, since LoggingT is already an instance of all required classes. This implementation automatically solves all threading-related problems, since in fact it does not have any shared state.
  • Use System.Log.Heavy.IO module. If you do not have monadic transformers at all, and your application works in pure IO, this may be the simplest way. However, this is a bit fragile, because you have to be sure that you always call logging functions only when logging state is initialized, i.e. within withLoggingIO call. This implementation stores required state in thread-local storage.
  • Implement required class instances for monadic stack that you already use in your application. For example, if you already have something like ReaderT StateT ExceptT IO, it will be probably better to add a couple of fields to StateT's state to track logging state, than change your stack to ReaderT StateT LoggingT ExceptT IO. If you wish to store logging state in some kind of shared storage (global IORef or whatever), then you should think about thread-safety by yourself.

When you decided which monadic context you will use, you will call one of withLogging* functions to run the entire thing, and inside that you will construct instances of LogMessage type and call logMessage or logMessage' function on them to actually log a message. You probably will want to use some shortcut functions to construct LogMessage instances and log them. There are some provided by this package:

  • System.Log.Heavy.Shortcuts module exports simple functions, that can be used in simple cases, when you do not want to write or check message source.
  • System.Log.Heavy.TH module exports TH macros, which correctly fill message source and location.
Synopsis

Reexports

Logging functions

logMessage :: forall m. (HasLogging m, MonadIO m) => LogMessage -> m () Source #

Log a message. This will add current context to context specified in the message. This function checks current context filter.

Run actions with logging

withLogging Source #

Arguments

:: (MonadBaseControl IO m, MonadIO m, HasLogger m) 
=> LoggingSettings

Settings of arbitrary logging backend

-> m a

Actions to be executed

-> m a 

Execute actions with logging. This function can be useful for monad stacks that store logging backend in State-like structure.

withLoggingF Source #

Arguments

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

Settings of arbitrary logging backend.

-> (forall b. IsLogBackend b => b -> m a)

Actions to execute with logging backend. Note that this type declaration binds argument to work with *any* implementation of backend.

-> m a 

Execute actions with logging backend. This is mostly an utility function to be used to construct custom logging frameworks for custom monad transformer stacks.

withLoggingT Source #

Arguments

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

Settings of arbitrary logging backend

-> LoggingT m a

Actions to be executed

-> m a 

Execute actions with logging. This function is most convinient if you use LoggingT as HasLogging implementation.

Check current settings

isLevelEnabledByBackend :: forall m. (Monad m, MonadIO m, HasLogBackend AnyLogBackend m) => LogSource -> Level -> m Bool Source #

Check if logging of events of specified level from specified source is enabled by backend.

This function assumes that if some events filtering is enabled by the backend, it does not depend on message text, only on source and severity level.

isLevelEnabled :: forall m. (Monad m, MonadIO m, HasLogBackend AnyLogBackend m, HasLogContext m) => LogSource -> Level -> m Bool Source #

Check if logging of events of specified level from specified source is enabled by both context and backend filter.

This function assumes that if some events filtering is enabled by the backend, it does not depend on message text, only on source and severity level.