a53-416
a53-416

Reputation: 3935

Show only errors and info, not warnings

In the newer Chrome dev tools, you have an option to filter how noisy the console log is. It gives you these choices:

enter image description here

In the old version, we could combine filters. This was cool because it gave you greater control over the console logs - say you only wanted to show "Errors" and "Info", but not "Warnings", you would press on "Errors", then ctrl-click the "Info" button. Boom - done

enter image description here

So someone on the Chrome team thought this was too convenient, because it's now been removed.

My question is: How do I "revert back" to the old dev tools so I could get fine grained control over my filtering again? Anyone have a better solution?

Upvotes: 1

Views: 85

Answers (1)

Kayce Basques
Kayce Basques

Reputation: 25907

There was a big discussion on the topic in the mailing list.

In Chrome Canary you can enable multiple levels, like before.

Note that console.log() and console.info() are both grouped into the Info bucket.

Upvotes: 1

Related Questions