Is there any option on LOG for example, you know like on windows (CTRL+F) and you can easy find out what you looking for.
Thanks
Is there any option on LOG for example, you know like on windows (CTRL+F) and you can easy find out what you looking for.
Thanks
The answer is in this thread. The ~ symbol means “matches”, i.e. it searches for a regular expression (or just a plain string) in the column indicated. || and && can be used to combine the search conditions, e.g.:
/log print where message ~ "registered" && message ~ "5G"
Thanks ![]()