Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. pureLogPrintDebugText :: Q Exp

    easy-logger EasyLogger.Logger

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

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

  3. pureLogPrintErrorText :: Q Exp

    easy-logger EasyLogger.Logger

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

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

  5. pureLogPrintInfoText :: Q Exp

    easy-logger EasyLogger.Logger

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

  6. pureLogPrintWarning :: Q Exp

    easy-logger EasyLogger.Logger

    Same as pureLogWarning, but also prints the warning.

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

  7. pureLogPrintWarningText :: Q Exp

    easy-logger EasyLogger.Logger

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

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

  9. type ExtPrinter a = a -> Text

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

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

  10. namePrinter :: PrintMode n v e -> ExtPrinter n

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

    No documentation available.

Page 246 of many | Previous | Next