summaryrefslogtreecommitdiff
path: root/modules/test
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2021-09-20 17:51:21 +0000
committerYann Ylavic <ylavic@apache.org>2021-09-20 17:51:21 +0000
commitc64996059289dce8008a02b9b696f8a3cd89091c (patch)
tree5260dc86875578856c1ac126b03ba77b27d6994e /modules/test
parent59a5a8d3e5168a29442a20244eaf1f40e13fb963 (diff)
downloadhttpd-c64996059289dce8008a02b9b696f8a3cd89091c.tar.gz
mod_example_hooks, mod_optional_fn_export: debug messages at APLOG_DEBUG level
Switch from APLOG_NOTICE/ERR to APLOG_DEBUG to avoid filling the logs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893477 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/test')
-rw-r--r--modules/test/mod_optional_fn_export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/test/mod_optional_fn_export.c b/modules/test/mod_optional_fn_export.c
index 5dccfc9782..36667a93cc 100644
--- a/modules/test/mod_optional_fn_export.c
+++ b/modules/test/mod_optional_fn_export.c
@@ -25,7 +25,7 @@
static int TestOptionalFn(const char *szStr)
{
- ap_log_error(APLOG_MARK,APLOG_ERR,OK,NULL, APLOGNO(01871)
+ ap_log_error(APLOG_MARK,APLOG_DEBUG,OK,NULL, APLOGNO(01871)
"Optional function test said: %s",szStr);
return OK;