Fix systemd logging for lvlNotice: eqv to lvlInfo, not lvlVomit

This commit is contained in:
Robert Hensing 2023-04-03 18:01:30 +02:00
parent 62cacc371f
commit ed7885017c

View file

@ -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';
}