From: Graham Leggett Date: Fri, 16 Feb 2018 13:52:47 +0000 (+0000) Subject: Set the notice when hostname is too long for legacy proxy modules to info level. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86c5536268d0681a16d19fd125e81c14e2cbaa46;p=apache Set the notice when hostname is too long for legacy proxy modules to info level. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1824482 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 3c81c8b65e..f2ea34d8af 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1731,7 +1731,7 @@ PROXY_DECLARE(char *) ap_proxy_define_worker(apr_pool_t *p, return apr_psprintf(p, "worker hostname (%s) too long", uri.hostname); } if (PROXY_STRNCPY(wshared->hostname, uri.hostname) != APR_SUCCESS) { - ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf, APLOGNO(010118) + ap_log_error(APLOG_MARK, APLOG_INFO, 0, ap_server_conf, APLOGNO(010118) "worker hostname (%s) too long; truncated for legacy modules that do not use " "proxy_worker_shared->hostname_ex: %s", uri.hostname, wshared->hostname); }