diff options
author | Robert Hensing <robert@roberthensing.nl> | 2023-04-03 18:01:30 +0200 |
---|---|---|
committer | Robert Hensing <robert@roberthensing.nl> | 2023-04-03 18:17:32 +0200 |
commit | ed7885017c25940f571dc58e94ca47fa84780f9d (patch) | |
tree | 6caeef10e0883a4c4a13495eec2d65bfc39d0def /src | |
parent | 62cacc371f7e0d5745c28a8e1a77ddbc834df31c (diff) |
Fix systemd logging for lvlNotice: eqv to lvlInfo, not lvlVomit
Diffstat (limited to 'src')
-rw-r--r-- | src/libutil/logging.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc index 7cac75ce1..28b385461 100644 --- a/src/libutil/logging.cc +++ b/src/libutil/logging.cc @@ -65,7 +65,7 @@ public: switch (lvl) { case lvlError: c = '3'; break; case lvlWarn: c = '4'; break; - case lvlInfo: c = '5'; break; + case lvlNotice: case lvlInfo: c = '5'; break; case lvlTalkative: case lvlChatty: c = '6'; break; default: c = '7'; } |