Popularity
7.5
Declining
Activity
0.0
Stable
7
15
0
Monthly Downloads: 6
Programming language: HTML
License: LicenseRef-Apache
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]
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
Promo getstream.io
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.