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
Let's say in production you set the log level to info. Then a user reports a problem and you want to change the log level to debugjust for you while you poke around.
I am not sure what the API looks like but I'd almost want to do something like
if params.get?(:enable_super_special_log_just_for_me)
Log.current_fiber_level =:debug# Sets all logs to `:debug` *just* for the current Fiberend
In a handler, before pipe, whatever. This would be super handy and I'd like to build something in for this at some point. So you can use Breeze in production but just with a special token set in the query param or a header
The text was updated successfully, but these errors were encountered:
Let's say in production you set the log level to
info
. Then a user reports a problem and you want to change the log level todebug
just for you while you poke around.I am not sure what the API looks like but I'd almost want to do something like
In a handler, before pipe, whatever. This would be super handy and I'd like to build something in for this at some point. So you can use Breeze in production but just with a special token set in the query param or a header
The text was updated successfully, but these errors were encountered: