How can I send a message to the systemd journal from the command line?
systemd-cat is the equivalent to logger: echo ‘hello’ | systemd-cat In another terminal, running journalctl -f: Feb 07 13:38:33 localhost.localdomain cat[15162]: hello Priorities are specified just by part of the string: echo ‘hello’ | systemd-cat -p info echo ‘hello’ | systemd-cat -p warning echo ‘hello’ | systemd-cat -p emerg Warnings are bold, emergencies are bold … Read more