You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks for the great work! I stumbled upon a problem and I am not sure if I misunderstood or if it is a bug. The use of a LogLevel below -1000 does not seem to work. And LoggingExtras.withlevel() does not seem to have an effect.
I tested it on Julia v1.10.3 with LoggingExtras v1.0.3.
Consider the following code:
using Logging, LoggingExtras
Trace = Logging.LogLevel(-2000)
LoggingExtras.withlevel(Trace) do@logmsg Trace "test LogLevel -2000"# not shown@debug"test LogLevel -1000"# not shownend
Both messages are not shown, but I would have expected otherwise.
Hi,
thanks for the great work! I stumbled upon a problem and I am not sure if I misunderstood or if it is a bug. The use of a
LogLevel
below -1000 does not seem to work. AndLoggingExtras.withlevel()
does not seem to have an effect.I tested it on Julia v1.10.3 with LoggingExtras v1.0.3.
Consider the following code:
Both messages are not shown, but I would have expected otherwise.
Furthermore, my "fixes" did not work either:
At least now, the debug message is show, but I would have expected both messages to be shown.
The same is true for the following code:
Or:
Did I miss something?
The text was updated successfully, but these errors were encountered: