Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. pureLogPrintDebug :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogDebug, but also prints the message on stdout.

    $(purePrintLogDebug) "This is a debug log message" defaultValue
    

  2. pureLogPrintDebugText :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogPrintDebug, but with concrete type Text as log message.

  3. pureLogPrintError :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogError, but also prints the message on stderr.

    $(pureLogPrintError) "This is a error log message" (4 + 4)
    

  4. pureLogPrintErrorText :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogPrintError, but with concrete type Text as log message.

  5. pureLogPrintInfo :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogInfo, but also prints the message on stdout.

    $(pureLogPrintInfo) "This is a warning log message" (funcX 10)
    

  6. pureLogPrintInfoText :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogPrintInfo, but with concrete type Text as log message.

  7. pureLogPrintWarning :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogWarning, but also prints the warning.

    $(pureLogPrintWarning) "This is a error log message" (4 + 4)
    

  8. pureLogPrintWarningText :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogPrintWarning, but with concrete type Text as log message.

  9. setPrintLocationToConsole :: Bool -> IO ()

    easy-logger EasyLogger.Logger

    Set the least logging level. Levels lower will not be logged. Log Level Order: Debug < Info < Warning < Error. None disables all logging. Note that the output to stderr using e.g. logPrintError will not be affected!

  10. type ExtPrinter a = a -> Text

    egison-pattern-src Language.Egison.Pretty.Pattern

    ExtPrinter a is a type for externally provided printer of a.

Page 379 of many | Previous | Next