logging-effect

A mtl-style monad transformer for general purpose & compositional logging

https://github.com/ocharles/logging-effect

Version on this page:1.1.3
LTS Haskell 22.13:1.4.0
Stackage Nightly 2023-12-26:1.4.0
Latest on Hackage:1.4.0

See all snapshots logging-effect appears in

BSD-3-Clause licensed by Ollie Charles
Maintained by [email protected]
This version can be pinned in stack with:logging-effect-1.1.3@sha256:9fe4ea56eaeb4078b4424fc681a4d59d66bf5b0f4ffe9ebed70e30d1e99c7bf6,1591

Module documentation for 1.1.3

Changes

1.1.3

Other Changes

  • Increased upper bound of time to allow < 1.9.

1.1.2

Other changes

  • Increased upper bound of time

1.1.1

  • withBatchedHandler no longer prints empty log messages. Previously, if you ran a program that didn’t log but used withBatchedHandler (or anything that used that), an empty log message would be output. Thanks to @codedmart for fixing this.

1.1.0

Breaking changes:

  • MonadLog no longer has logMessage as a function. It now has logMessageFree which takes a free monoid of log messages. If you were just using logging-effect then this won’t affect you, as logMessage still exists with the same signature outside the type class.

  • MonadLog now comes with a law that states that logging is a monoid homomorphism. This essentially means that you have to treat all log messages uniformly.

  • Pass-through instances for all “stock” monad transformers have been added (all of transformers, CatchT from exceptions and FreeT/FT from free).

  • WithSeverity now has instances of Traversable and Foldable

  • WithTimestamp now has instances of Eq, Ord, Read and Show.

Additions:

  • A set of convenience functions have been added for quickly logging with severity. The combinators are: logDebug, logInfo, logNotice, logWarning, logError, logCritical, logAlert and logEmergency.

  • mapLogMessage got a companion function mapLogMessageM that works with monadic tranformations.

Other

  • Many documentation bug fixes.

  • INLINEABLE pragmas added.


1.0.0

  • Initial release