Hi @TriMoon ,
You can change the service unit’s log level. To do so:
- Edit the unit:
sudo systemctl edit rtkit-daemon.service
- In the
[Service]section, add:
LogLevelMax=3
For reference, the standard log levels are emergency (0), alert (1), critical (2), error (3), warning (4), notice (5), info (6), and debug (6). Setting a lower number excludes the higher and less important log messages from your journal.
Afterwards, save and exit followed by loading the changes, and r3estarting the unit:
sudo systemctl daemon-reload
and
sudo systemctl restart rtkit-daemon.service
Hope this helps!