]> granicus.if.org Git - apache/commitdiff
mod_proxy: Tone down a warning message that appears when the same backend
authorGraham Leggett <minfrin@apache.org>
Sun, 21 Mar 2010 18:18:38 +0000 (18:18 +0000)
committerGraham Leggett <minfrin@apache.org>
Sun, 21 Mar 2010 18:18:38 +0000 (18:18 +0000)
website is reverse proxied two or more times into the frontend URL space.
PR: 48947

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@925850 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy.c

index 6668736880bbd8df55c0715af42f261a8628b2a2..cb5336f20224b6d0f5c065b3f853776bf6ae209c 100644 (file)
@@ -1378,7 +1378,7 @@ static const char *
             if (err)
                 return apr_pstrcat(cmd->temp_pool, "ProxyPass ", err, NULL);
         } else {
-            ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server,
+            ap_log_error(APLOG_MARK, APLOG_INFO, 0, cmd->server,
                          "worker %s already used by another worker", worker->name);
         }
         PROXY_COPY_CONF_PARAMS(worker, conf);
@@ -1775,7 +1775,7 @@ static const char *add_member(cmd_parms *cmd, void *dummy, const char *arg)
         if ((err = ap_proxy_add_worker(&worker, cmd->pool, conf, name)) != NULL)
             return apr_pstrcat(cmd->temp_pool, "BalancerMember ", err, NULL);
     } else {
-        ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server,
+        ap_log_error(APLOG_MARK, APLOG_INFO, 0, cmd->server,
                      "worker %s already used by another worker", worker->name);
     }
     PROXY_COPY_CONF_PARAMS(worker, conf);