Skip to content

Instantly share code, notes, and snippets.

@mkitti
Created March 31, 2021 06:49
Show Gist options
  • Save mkitti/524e3507f3dea27dd1a44d8c4e889072 to your computer and use it in GitHub Desktop.
Save mkitti/524e3507f3dea27dd1a44d8c4e889072 to your computer and use it in GitHub Desktop.
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