]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
logger: messages are logged with kern.* priority by default
authorRainer Gerhards <rgerhards@adiscon.com>
Thu, 5 Mar 2015 15:44:03 +0000 (16:44 +0100)
committerRainer Gerhards <rgerhards@adiscon.com>
Thu, 5 Mar 2015 15:44:03 +0000 (16:44 +0100)
The default should be user.notice and kern.* should never be used
(syslog(3) forbids this).

This is a severe regression, as messages are now logged to the wrong
bin or not at all. So they get lost and may confuse readers of the
kernel bin.

regression from 2.25.2 to 2.26

misc-utils/logger.c

index 1e7e2dc100c05608154f1f087bc07add3689a69e..5ec722efe24c0d0fe9490075a55488bb70fbcf8d 100644 (file)
@@ -593,7 +593,7 @@ int main(int argc, char **argv)
        struct logger_ctl ctl = {
                .fd = -1,
                .pid = 0,
-               .pri = LOG_NOTICE,
+               .pri = LOG_USER | LOG_NOTICE,
                .prio_prefix = 0,
                .tag = NULL,
                .unix_socket = NULL,