Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide warning messages in console window

The Chrome console window is full of warning messages that I like to hide. Is it possible to hide the warning logs? I only want to show my custom logs e.g. console.log('mymessage');

This is how the console windowbar looks like:

enter image description here

like image 602
doorman Avatar asked May 17 '17 15:05

doorman


1 Answers

Just recently there was a Chrome update. Now filtering single message types is possible (Verbose, Info, Warnings, Errors)! (My Version: Version 60.0.3112.90)

When opening the console, instead of selecting a "filter level", you can now check or uncheck each message type.

Screenshot of Console in Chrome

like image 185
Jodo Avatar answered Sep 21 '22 19:09

Jodo