Last active
December 11, 2020 00:09
-
-
Save xerial/eb5b0f030f477ad5b71924884f77ab45 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libraryDependencies += "org.wvlet.airframe" %% "airframe-log" % "20.12.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import wvlet.log.LogSupport | |
object MyApp extends LogSupport { | |
info("Hello airframe-log!") | |
warn("This is a warning message") | |
debug("debug messsages will not be shown by default") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment