summaryrefslogtreecommitdiffstats
path: root/server/mpm_common.c
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-06-21 00:57:24 +0200
committerStefan Fritsch <sf@apache.org>2011-06-21 00:57:24 +0200
commit4b3f0aaf96ba2ff914ee326866d6e3ae41a5efaa (patch)
tree49a1f71233252a82d0ceb8c735a25d665a8840cd /server/mpm_common.c
parentFix search'n'replace error: Actually warn if MaxClients is used (diff)
downloadapache2-4b3f0aaf96ba2ff914ee326866d6e3ae41a5efaa.tar.xz
apache2-4b3f0aaf96ba2ff914ee326866d6e3ae41a5efaa.zip
Log the deprecation warning at level info, not warn
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1137813 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm_common.c')
-rw-r--r--server/mpm_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm_common.c b/server/mpm_common.c
index aed388bb24..0f87e67b47 100644
--- a/server/mpm_common.c
+++ b/server/mpm_common.c
@@ -308,7 +308,7 @@ const char *ap_mpm_set_max_requests(cmd_parms *cmd, void *dummy,
}
if (!strcasecmp(cmd->cmd->name, "MaxRequestsPerChild")) {
- ap_log_error(APLOG_MARK, APLOG_WARNING, 0, NULL,
+ ap_log_error(APLOG_MARK, APLOG_INFO, 0, NULL,
"MaxRequestsPerChild is deprecated, use "
"MaxConnectionsPerChild instead.");
}