How to display syslog priority level in systemd’s journalctl

journalctljournaldsystemd

journalctl allows me to filter on priority (-p) and color-codes the priority in the output. But is there any way to get it to output the priority directly, as text?

Best Answer

The following output options display priority (and facility), but in a different format:

journalctl -o verbose
journalctl -o json (and json-pretty)
journalctl -o export
Related Topic