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
At least Chrome can group repeating similar log messages. The use of console.group() and console.groupCollapsed() in BrowserLogger seems to prevent that feature, which is unfortunate especially for often repeating debug output.
The text was updated successfully, but these errors were encountered:
ansiwen
added a commit
to ansiwen/bs-log
that referenced
this issue
Jul 15, 2020
The Console API of browsers offer several functions for logs of
different severity levels, like error, warn, info, debug. This change
uses these functions instead of groupCollapsed for simple logs without data.
This allows to filter for logs in the browser console and allows the
browser to automatically group repeating logs.
Fixes: shakacode#17, shakacode#18
Signed-off-by: Sven Anderson <sven@anderson.de>
At least Chrome can group repeating similar log messages. The use of
console.group()
andconsole.groupCollapsed()
in BrowserLogger seems to prevent that feature, which is unfortunate especially for often repeating debug output.The text was updated successfully, but these errors were encountered: