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
Messages like those in this issue which are for debugging, should not be posted to console.log but instead indirectly to console.debug through logging.debug.
It is possible to set a default logging level in the config.json such that only messages from the specified level upward are output to the console. The logging levels are listed in the logLevelEnum file.
Otherwise, here is an article on how to subsequently filter the console in a browser, such that the browser console only shows messages of the various types:
It is probably wise not to remove logs used for debugging, but it is a good idea to output them to the correct pipe and to use the Adapt's APIs to do so.
Subject of the issue
In
end-trickle.js
, statements about when Trickle starts and ends are output to the console.This adds unnecessary messages to the console that are not valuable unless you are specifically troubleshooting a Trickle issue.
I would suggest one of the following:
console.debug()
_quietMode
or_suppressConsoleLogs
.The text was updated successfully, but these errors were encountered: