Popularity
7.6
Declining
Activity
0.0
Stable
7
16
0
Monthly Downloads: 2
Programming language: HTML
License: GNU General Public License v3.0 or later
Latest version: v0.1.12
monad-logger-prefix alternatives and similar packages
Based on the "monad" category.
Alternatively, view monad-logger-prefix alternatives based on common mentions on social networks and blogs.
-
monad-validate
DISCONTINUED. (NOTE: REPOSITORY MOVED TO NEW OWNER: https://github.com/lexi-lambda/monad-validate) A Haskell monad transformer library for data validation -
monad-io-adapter
DISCONTINUED. A Haskell package that adapts between MonadIO and MonadBase IO [GET https://api.github.com/repos/cjdev/monad-io-adapter: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository]
InfluxDB high-performance time series database
Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
Promo
influxdata.com

Do you think we are missing an alternative of monad-logger-prefix or a related project?
README
monad-logger-prefix
This package provides an easy way to add prefixes to any
MonadLogger
. Here's a brief example:
{-# LANGUAGE TemplateHaskell #-}
import Control.Monad.Logger
import Control.Monad.Logger.Prefix
main :: IO ()
main = runStdoutLoggingT $ do
$(logDebug) "This one has no prefix."
"foo" `prefixLogs` do
$(logDebug) "This one has a [foo] prefix."
"bar" `prefixLogs` do
$(logDebug) "This one has both [foo] and [bar] prefixes."
The package includes a benchmark demonstrating that there is no performance difference with ordinary logging.