1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-31 14:50:15 +03:00

core: use correct level for CPU time log message

raise_level() takes the info condition as second argument and the notice
one as third. For the consumed CPU time these conditions are swapped.

Fixes: 37109b856aeb ("pid1: use LOG_DEBUG/INFO/NOTICE for unit resource consumption message")
This commit is contained in:
Christian Göttsche 2021-12-06 16:57:42 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent ea599435a7
commit ef6bb4dd3e

View File

@ -2304,8 +2304,8 @@ static int unit_log_resources(Unit *u) {
message_parts[n_message_parts++] = t;
log_level = raise_level(log_level,
nsec > NOTICEWORTHY_CPU_NSEC,
nsec > MENTIONWORTHY_CPU_NSEC);
nsec > MENTIONWORTHY_CPU_NSEC,
nsec > NOTICEWORTHY_CPU_NSEC);
}
for (CGroupIOAccountingMetric k = 0; k < _CGROUP_IO_ACCOUNTING_METRIC_MAX; k++) {