How to use filter in the console of Chrome developer tools?

clipboard.png

feels like countless times, and every time I try to use this thing to get some data on Filter, I don"t succeed, so I"d like to ask it today. At first, I thought this thing would be like a "ctrl+f" tool that directly highlights the content that requires Filter, but in fact it has never been used, like everyone in charge instructs tweet

.

clipboard.png
you can type Verbose Info Warnings Errors, in the filter box and you will know what it means.
you can also find the output information (the output of Filter dropped output-which does not contain the contents of the filter input box)


you can try entering the following code in the console:

console.log('a');
console.log('abc');
console.log('d');

then enter to run.
in the Filter input box, enter 'asides' and 'breadwinners' respectively; check the changes.


is what type of information Filter displays:

what is checked before is to be displayed, and if it is not checked, the information that does not show printing will be hidden

.
Menu