summaryrefslogtreecommitdiff
path: root/modules/slotmem
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2014-08-29 19:42:54 +0000
committerJim Jagielski <jim@apache.org>2014-08-29 19:42:54 +0000
commitb8574b7140c4d9921c3703d99ebba89a54f6538e (patch)
tree90deb0792beaaded3eb30aa5118554b6d7f4f1e8 /modules/slotmem
parent527acb80ce216694f30d8efbfff4cbd360aec86c (diff)
downloadhttpd-b8574b7140c4d9921c3703d99ebba89a54f6538e.tar.gz
These are more than debug errors...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1621373 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/slotmem')
-rw-r--r--modules/slotmem/mod_slotmem_shm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/slotmem/mod_slotmem_shm.c b/modules/slotmem/mod_slotmem_shm.c
index 3eda5082cf..fda8e1dc7d 100644
--- a/modules/slotmem/mod_slotmem_shm.c
+++ b/modules/slotmem/mod_slotmem_shm.c
@@ -215,19 +215,19 @@ static apr_status_t restore_slotmem(void *ptr, const char *name, apr_size_t size
rv = APR_SUCCESS;
apr_md5(digest2, ptr, nbytes);
if (memcmp(digest, digest2, APR_MD5_DIGESTSIZE)) {
- ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf,
+ ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf,
APLOGNO(02551) "bad md5 match");
rv = APR_EGENERAL;
}
}
}
else {
- ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf,
+ ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, ap_server_conf,
APLOGNO(02552) "at EOF... bypassing md5 match check (old persist file?)");
}
}
else if (nbytes != size) {
- ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf,
+ ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf,
APLOGNO(02553) "Expected %" APR_SIZE_T_FMT ": Read %" APR_SIZE_T_FMT,
size, nbytes);
rv = APR_EGENERAL;