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
fix(logging): debug() should not use console.trace()
Problem:
The console.trace() docstring says:
Prints to `stderr` the string 'Trace :', followed by the util.format
formatted message and stack trace to the current position in the code.
But that is not useful/desirable for our codebase; we want
logger.debug() to write to the browser console (if available).
Solution:
Use console.debug() instead of console.trace().
0 commit comments