From: Ryan Bloom Date: Fri, 10 Nov 2000 14:55:27 +0000 (+0000) Subject: This is always displayed to the console. There is no reason to print the X-Git-Tag: APACHE_2_0_ALPHA_8~115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b2fa16981f47c244bc0c597ecc56e087a38c3c9;p=thirdparty%2Fapache%2Fhttpd.git This is always displayed to the console. There is no reason to print the date and time to the console, so we should use APLOG_STARTUP to suppress them git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86905 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index ab5afea3bb2..1bd2e355ee4 100644 --- a/server/util.c +++ b/server/util.c @@ -1950,7 +1950,7 @@ char *ap_get_local_host(apr_pool_t *a) if (!server_hostname) server_hostname = apr_pstrdup(a, "127.0.0.1"); - ap_log_error(APLOG_MARK, APLOG_ALERT|APLOG_NOERRNO, 0, NULL, + ap_log_error(APLOG_MARK, APLOG_ALERT|APLOG_NOERRNO|APLOG_STARTUP, 0, NULL, "%s: Could not find determine the server's fully qualified " "domain name, using %s for ServerName", ap_server_argv0, server_hostname);