Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

My chrome console log filter not working/buggy

enter image description here

Since around 2 weeks ago, my console filter starts to filter out even matching text. Tried restarting, is currently on the latest chrome version, also tried to restore settings, nothing. Searched on the web too didn't really find anything similar... I am banging my head against the wall right now if anyone has a lead, please... (Apparently one of my coworkers also starts to have this issue recently... )

Edit1: So played with a couple versions of chrome more. I am current on 95.0.4638.69. Tried beta version 96.x, same issue. Tried chromium 94.x, it works all fine! Haven't got a chance to try chrome 94.x as I dont' want to uninstall my chrome yet. But yeah I am leaning towards that the 95.x updates may break it, though I haven't seen any official info regarding it.

like image 471
user3695760 Avatar asked Nov 05 '21 00:11

user3695760


People also ask

Why my console is not working in Chrome?

To restore the console in new tab go to console and type delete window. console it will return true after that restart the chrome and you are good to go.

How do I debug console in Chrome?

To open the developer console in Google Chrome, open the Chrome Menu in the upper-right-hand corner of the browser window and select More Tools > Developer Tools. You can also use Option + ⌘ + J (on macOS), or Shift + CTRL + J (on Windows/Linux).

How do I disable Chrome console warnings?

As of Chrome version 78 (Dec 2019), in the "Console" tab, click on the "Default levels" pulldown, and uncheck the types of messages you don't want displayed.


1 Answers

Same issue on Chrome 95.0.4638.69 (latest as of 9 Nov 2021)

Workaround I'm using at present is to use Regular Expression format in place of standard filter string e.g. test -> /test/, then it works just the same

To filter by multiple strings separate with a pipe (OR) character /test|another/, and add an empty string pipe at the end to quickly clear filtering without deleting the filter /test|another|/

like image 76
Drenai Avatar answered Oct 22 '22 10:10

Drenai