Reputation: 3935
In the newer Chrome dev tools, you have an option to filter how noisy the console log is. It gives you these choices:
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
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
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