summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2010-06-06 16:56:08 +0000
committerStefan Fritsch <sf@apache.org>2010-06-06 16:56:08 +0000
commit9d791e0e60049e39237d95dfd3fb195bb7f83b1e (patch)
tree81f6e0a2609e695a3d09d0c930835ac0a56344c2 /modules/examples
parent98a1e93dca3b34630d607bc15d95f6dfe39d778d (diff)
downloadhttpd-9d791e0e60049e39237d95dfd3fb195bb7f83b1e.tar.gz
Fix some modules to make them compile with per-module loglevels.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@951894 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/examples')
-rw-r--r--modules/examples/mod_example_hooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/examples/mod_example_hooks.c b/modules/examples/mod_example_hooks.c
index 16c94d7394..a9709149e6 100644
--- a/modules/examples/mod_example_hooks.c
+++ b/modules/examples/mod_example_hooks.c
@@ -491,7 +491,7 @@ static void trace_nocontext(apr_pool_t *p, const char *file, int line,
*/
#ifdef EXAMPLE_LOG_EACH
- ap_log_perror(file, line, APLOG_NOTICE, 0, p, "%s", note);
+ ap_log_perror(file, line, APLOG_MODULE_INDEX, APLOG_NOTICE, 0, p, "%s", note);
#endif
}