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
Logger.only() is dedicated to trigger additional operation, only if needed.
It seems natural to me to be able to gather those information only at some level of logging.
Typically one wants to display errors without triggering potentially costly operations to collect debug information. This could be done later, on the developer's machine.
Logger.only()
is dedicated to trigger additional operation, only if needed.It seems natural to me to be able to gather those information only at some level of logging.
Typically one wants to display errors without triggering potentially costly operations to collect debug information. This could be done later, on the developer's machine.
The other solution would be to expose the current log level, so it can be checked inside
Logger.only()
.EDIT: I'm willing to submit a PR for this.
The text was updated successfully, but these errors were encountered: