definition:
|
fromErrorLogger :: LogLevel -> Bool -> ErrorLogger a -> IO a
fromErrorLogger l s a = do
((glob, _), (msgs, err)) <- runErrorLogger a l s
mapM (printLogEntry glob) msgs
case err of
Right v -> return v
Left m -> printLogEntry glob m >> exitWith 1
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms an error logger action into a standard IO action.
--- It shows all messages and, if the result is not available,
--- exits with a non-zero code.
--- The first argument specifies the logging level for messages.
--- If the second argument is true, timings are shown in the messages.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
fromErrorLogger
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
LogLevel -> Prelude.Bool -> ErrorLogger a -> Prelude.IO a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|