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
Running @suppress error("wrongness") displays the red ERROR: wrongness, but doesn't display the backtrace. I'm a little confused by that because by the time the exception is being displayed we should be out of the finally block of the @suppress macro (https://github.com/JuliaIO/Suppressor.jl/blob/master/src/Suppressor.jl#L29-L37) so it doesn't seem like it should make a difference. Is there something weird with the way that errors are printed?
Running
@suppress error("wrongness")
displays the redERROR: wrongness
, but doesn't display the backtrace. I'm a little confused by that because by the time the exception is being displayed we should be out of thefinally
block of the@suppress
macro (https://github.com/JuliaIO/Suppressor.jl/blob/master/src/Suppressor.jl#L29-L37) so it doesn't seem like it should make a difference. Is there something weird with the way that errors are printed?MWE:
The text was updated successfully, but these errors were encountered: