We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Frequently Asked Questions and Quick Tips:
How do I install Scribe to replace System.out and System.err?
System.out
System.err
scribe.Logger.system.redirect()
How do I install Scribe as a java.util.logging (JUL) implementation?
scribe.Logger.system.installJUL()
How do I use the Scribe with Cats Effect? First, you must ensure you've added the dependency scribe-cats.
scribe-cats
Second, a simple import can give you access:
import scribe.cats.{io => logger}
Finally, to use the logging:
logger.info("Hello, Effects!") // Returns IO[Unit]
For more information, see the Cats Effect Wiki Page