Chrome console: How to filter exclude certain logs?
Use this:
^((?![INSERT YOUR WORD THAT YOU WANT TO EXCLUDE HERE]).)*$
Don't forget to check the Regex checkbox!
Example:
I'm excluding logs that contains Pusher
words here. So, this is what I put inside the filter box: ^((?!pusher).)*$