Cabal-3.2.1.0: A framework for packaging Haskell software
Safe HaskellNone
LanguageHaskell2010

Distribution.Utils.LogProgress

Synopsis

Documentation

data LogProgress a Source #

The Progress monad with specialized logging and error messages.

Instances

Instances details
Monad LogProgress # 
Instance details

Defined in Distribution.Utils.LogProgress

Functor LogProgress # 
Instance details

Defined in Distribution.Utils.LogProgress

Methods

fmap :: (a -> b) -> LogProgress a -> LogProgress b Source #

(<$) :: a -> LogProgress b -> LogProgress a Source #

Applicative LogProgress # 
Instance details

Defined in Distribution.Utils.LogProgress

runLogProgress :: Verbosity -> LogProgress a -> NoCallStackIO a Source #

Run LogProgress, outputting traces according to Verbosity, die if there is an error.

warnProgress :: Doc -> LogProgress () Source #

Output a warning trace message in LogProgress.

infoProgress :: Doc -> LogProgress () Source #

Output an informational trace message in LogProgress.

dieProgress :: Doc -> LogProgress a Source #

Fail the computation with an error message.

addProgressCtx :: CtxMsg -> LogProgress a -> LogProgress a Source #

Add a message to the error/warning context.