How to filter messages in Firefox Error Console?

Some web pages I need to open when developing my script cause a lot of errors that go into the Firefox error console. This makes it difficult to detect errors generated by the script I'm trying to develop. Is there a way to filter errors in the error console? For example, display only those that begin with my custom tag.

+4
source share
3 answers

It sounds like you need a console that shares some filtering and search functions, such as Console² . It replaces the standard console with a more powerful version and works quite well. And he has a search box.

+3
source

Yes, now you can filter in the console using the built-in functions. You can choose different types of console messages or even filter using a custom string, for example, your own tag.

0
source

Source: https://habr.com/ru/post/1379726/


All Articles