Merge pull request #138 from versity/auke/ignore-journald-rotate

Filter out journald rotate messages.
This commit is contained in:
Zach Brown
2023-10-16 14:54:56 -07:00
committed by GitHub

View File

@@ -88,5 +88,8 @@ t_filter_dmesg()
# change-devices causes loop device resizing
re="$re|loop[0-9].* detected capacity change from.*"
# ignore systemd-journal rotating
re="$re|systemd-journald.*"
egrep -v "($re)"
}