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
When logging a debug (using this.logger.debug(xxx)), the message has the correct content, with the prefix "hh:mm:ss DEBUG", but when I want to filter those messages in Chrome, DEBUG is handled as an INFO message.
In Chrome, you are able to choose which level to display: Verbose/Info/Warnings/Errors.
If I disable "Verbose", nothing happens.
If I disable "Info", DEBUG logs disappears.
If I manually trigger a console.debug(xxx), it hides when I disable "Verbose", and stays displayed if I disable "Info".
This is annoying when you are on your dev machine, and punctually don't want to see debug logs.
The text was updated successfully, but these errors were encountered:
When logging a debug (using
this.logger.debug(xxx)
), the message has the correct content, with the prefix "hh:mm:ss DEBUG", but when I want to filter those messages in Chrome, DEBUG is handled as an INFO message.In Chrome, you are able to choose which level to display: Verbose/Info/Warnings/Errors.
If I disable "Verbose", nothing happens.
If I disable "Info", DEBUG logs disappears.
If I manually trigger a
console.debug(xxx)
, it hides when I disable "Verbose", and stays displayed if I disable "Info".This is annoying when you are on your dev machine, and punctually don't want to see debug logs.
The text was updated successfully, but these errors were encountered: