Popularity
4.8
Declining
Activity
0.0
Stable
6
3
3

Monthly Downloads: 73
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Control     Monad    
Latest version: v0.8.1

monad-journal alternatives and similar packages

Based on the "monad" category.
Alternatively, view monad-journal alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of monad-journal or a related project?

Add another 'monad' Package

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.