condlog uses its own log levels, so LOG_WARNING makes no sense. It
actually translates to a message sent at the LOG_DEBUG level.

Signed-off-by: Benjamin Marzinski <[email protected]>
---
 multipathd/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/multipathd/main.c b/multipathd/main.c
index 6193e691..85ac540f 100644
--- a/multipathd/main.c
+++ b/multipathd/main.c
@@ -3178,7 +3178,7 @@ setscheduler (void)
        res = sched_setscheduler (0, SCHED_RR, &sched_param);
 
        if (res == -1)
-               condlog(LOG_WARNING, "Could not set SCHED_RR at priority 99");
+               condlog(2, "Could not set SCHED_RR at priority 99");
        return;
 }
 
-- 
2.43.0


Reply via email to