Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

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

  1. logPrintWarningText :: Q Exp

    easy-logger EasyLogger.Logger

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

  2. pureLogPrintAll :: Q Exp

    easy-logger EasyLogger.Logger

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

    $(pureLogPrintAll) "This is a debug log message" (3 * 3)
    

  3. pureLogPrintAllText :: Q Exp

    easy-logger EasyLogger.Logger

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

  4. 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
    

  5. pureLogPrintDebugText :: Q Exp

    easy-logger EasyLogger.Logger

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

  6. 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)
    

  7. pureLogPrintErrorText :: Q Exp

    easy-logger EasyLogger.Logger

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

  8. 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)
    

  9. pureLogPrintInfoText :: Q Exp

    easy-logger EasyLogger.Logger

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

  10. pureLogPrintWarning :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogWarning, but also prints the warning.

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

Page 379 of many | Previous | Next