From: Rainer Gerhards Date: Thu, 5 Mar 2015 15:44:03 +0000 (+0100) Subject: logger: messages are logged with kern.* priority by default X-Git-Tag: v2.26.1~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=23dd342403042789aec5687eb4d80990ec5b9304;p=thirdparty%2Futil-linux.git logger: messages are logged with kern.* priority by default 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 --- diff --git a/misc-utils/logger.c b/misc-utils/logger.c index 6578cc7020..5bdfeeecaa 100644 --- a/misc-utils/logger.c +++ b/misc-utils/logger.c @@ -607,7 +607,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,