@hackage / monad-journal

Pure logger typeclass and monad transformer

Latest0.8.1

About

Metadata

  • Last updated , by DimitriSabadie
  • License BSD-3-Clause
  • Maintained by: Dimitri Sabadie <dimitri.sabadie@gmail.com>

  • Lottery factor: 0

Links

Installation

Readme

monad-journal

Pure logger typeclass and monad transformer

What is monad-journal?

monad-journal is a simple but powerful answer to the logging problem. A lot of people think that “logging” is IO-related, while it’s not. Everyone must know MonadWriter , which is perfect to log things in pure computations. The issue is that you can’t access those “things” inside the computation itself. monad-journal exposes a cool typeclass called MonadJournal that enables you to do so.