Created
March 31, 2021 06:49
-
-
Save mkitti/524e3507f3dea27dd1a44d8c4e889072 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
julia> a = 10 | |
10 | |
julia> @info "Macros are awesome" a | |
┌ Info: Macros are awesome | |
└ a = 10 | |
julia> @debug "How awesome?" a | |
julia> using Logging; global_logger( ConsoleLogger(stderr, Logging.Debug) ); | |
julia> @debug "How awesome?" a | |
┌ Debug: How awesome? | |
│ a = 10 | |
└ @ Main REPL[5]:1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment