-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] logs: log performance information at debug level
3b1657f introduced the logging of performance information in the logs. This could be useful in some case, but often flooded the console for nothing. This commit changes the log level to debug, so that it is not displayed by default. Unfortunately console.group is not meant for debug level (it still group the messages, but the group title is always displayed even if debug logs are not displayed). Replaced it by good'ol `console.debug("#####")` to mark sections. closes #5112 Task: 0 Signed-off-by: Vincent Schippefilt (vsc) <[email protected]>
- Loading branch information
1 parent
75906d4
commit 504b907
Showing
5 changed files
with
15 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters