We use condlog(5, ...) in some places, which doesn't work well with syslog. Reviewed-by: Benjamin Marzinski <bmarzins@xxxxxxxxxx> Signed-off-by: Martin Wilck <mwilck@xxxxxxxx> --- libmultipath/log_pthread.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libmultipath/log_pthread.c b/libmultipath/log_pthread.c index bb35dfc7..be57bb1a 100644 --- a/libmultipath/log_pthread.c +++ b/libmultipath/log_pthread.c @@ -25,6 +25,9 @@ static int log_messages_pending; void log_safe (int prio, const char * fmt, va_list ap) { + if (prio > LOG_DEBUG) + prio = LOG_DEBUG; + if (log_thr == (pthread_t)0) { vsyslog(prio, fmt, ap); return; -- 2.19.2 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel