When I see a log with
journalctl -f
so many errors appeared.
how can I ignore it?
When I see a log with
journalctl -f
so many errors appeared.
how can I ignore it?
If you want to filter the logs depending on criteria you can do that.
For example print the specified number of most recent logs
journalctl -n 10 -S "1 hour ago"
Or Print filter the messages from a specific module or unit.
journalctl -u WebAppMgr.service -f
For more details on available options and usage you can refer below site.
Journal log Options
https://www.freedesktop.org/software/systemd/man/journalctl.html