finding log entires in multiple categories

Is there a way to find log entries from multiple categories in one command?

Say I want to find critical topics and messages than contain the word “logged”. I can run two commands:

/log print where topics~"critical"
/log print where message~"logged"

Is there a way to combine the two into one command?
/log print where topics~“critical” message~“logged”

log

I figured it out:

/log find topics~"critical" || message~"logged"