Is there a GUI or yaml way to remove python 'traceback' lines from home-assistant.log?

I know this traceback info is important to find the root cause of errors in Home Assistant. However, when scanning through the home-assistant.log file at a higher level having only one line for each message seems more useful to spot and diagnose issues. The GUI log view lets you see a subset of messages, however there is a lot of wasted space and no options to sort by number of occurrences and/or severity. And if you view or download the log file you get the tracebacks. I use a grep (or on MacOS egrep) on the log file and it does what I want, however this is not as end-user friendly as I hope it would be.

Am I missing some way to configure or look at logs within HA? Or would this be something to recommend as an enhancement?

# linux
grep -P "^[0-9]{4}-[0-1][0-9]-[0-3][0-9] [0-2][0-9]:[0-5][0-9]:[0-5][0-9]\.[0-9]{3}" home-assistant.log

# macos
egrep "^[0-9][0-9][0-9][0-9]-[0-1][0-9]-[0-3][0-9] [0-2][0-9]:[0-5][0-9]:[0-5][0-9]\.[0-9][0-9][0-9]" your_file.txt

vs.