I have been trying to filter [HMR] *
messages in devtools with these regex
/^(?!\[HMR\]).*$/
/^(?!\[HMR\]).*$/gm
However with these regex it did found the things I need, Regex101. Images can be found below
Php flavor:
I have been trying to filter [HMR] *
messages in devtools with these regex
/^(?!\[HMR\]).*$/
/^(?!\[HMR\]).*$/gm
However with these regex it did found the things I need, Regex101. Images can be found below
Php flavor:
You can use a special Chrome filter syntax for removing lines like that:
-[HMR]
and
-[WDS]
This removes all lines matching [HMR]
and [WDS]
without using regex.