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-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ac4a8055c1e96235d136e4bc6f6c207cfc18152;p=apache 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 ab5afea3bb..1bd2e355ee 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);