From: abubakar sabir Date: Sun, 26 Apr 2026 02:36:18 +0000 (+0500) Subject: scheduler: Raise auth failure log level from DEBUG to WARN for fail2ban compatibility X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=42ba68ea67d20e66b29bdc0d81fe542e2947f730;p=thirdparty%2Fcups.git scheduler: Raise auth failure log level from DEBUG to WARN for fail2ban compatibility --- diff --git a/scheduler/auth.c b/scheduler/auth.c index 0e2c0be80a..83952472a3 100644 --- a/scheduler/auth.c +++ b/scheduler/auth.c @@ -2081,7 +2081,7 @@ cupsdIsAuthorized(cupsd_client_t *con, /* I - Connection */ * The user isn't part of the specified users or groups, so deny access... */ - cupsdLogMessage(CUPSD_LOG_DEBUG, "cupsdIsAuthorized: User not in group(s)."); + cupsdLogMessage(CUPSD_LOG_WARN, "cupsdIsAuthorized: User not in group(s)."); return (con->username[0] ? HTTP_STATUS_FORBIDDEN : HTTP_STATUS_UNAUTHORIZED); }