From: Stefan Fritsch Date: Sat, 31 Jul 2010 21:07:41 +0000 (+0000) Subject: Reduce logging noise at graceful restart X-Git-Tag: 2.3.7~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51b3ed8a8dc34298a1478ac65c45b393caa3649a;p=thirdparty%2Fapache%2Fhttpd.git Reduce logging noise at graceful restart git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@981092 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index 8506f1b7caf..6da86218a1e 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -200,9 +200,8 @@ module AP_MODULE_DECLARE_DATA auth_digest_module; static apr_status_t cleanup_tables(void *not_used) { - ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, + ap_log_error(APLOG_MARK, APLOG_INFO, 0, NULL, "Digest: cleaning up shared memory"); - fflush(stderr); if (client_rmm) { apr_rmm_destroy(client_rmm); @@ -248,7 +247,7 @@ static apr_status_t initialize_secret(server_rec *s) return status; } - ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, "Digest: done"); + ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, "Digest: done"); return APR_SUCCESS; }