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
This behavior should be specced / documented / fixed. To me this behavior doesn't make sense. Why would I pass the exception arg, other than if I expect it to be printed
The text was updated successfully, but these errors were encountered:
In my codebase a long time ago I had a line
Log.error(exception: exception) {}
in order to print an exception.But now this line simply does nothing.
To work around this, I had to change this to
Log.error(exception: exception) { "" }
Log
emitters to not emit event when block output isnil
#12000Thanks to @Blacksmoke16 for pointing me in this direction.
This behavior should be specced / documented / fixed. To me this behavior doesn't make sense. Why would I pass the
exception
arg, other than if I expect it to be printedThe text was updated successfully, but these errors were encountered: