Closed
Description
From the docs on disable_logging()
I believe this should be able to enable the debug logging. Either it's broken or the docs aren't clear on correct usage
julia> using Logging
julia> @debug "hello"
julia> Logging.disable_logging(Logging.BelowMinLevel)
LogLevel(-1000000)
julia> @debug "hello"
julia>