diff options
author | Rainer Jung <rjung@apache.org> | 2016-01-19 16:43:17 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2016-01-19 16:43:17 +0100 |
commit | 0eddea67acc5a43e432882f5b49b82d6b1cfd71f (patch) | |
tree | 37a8cf4c97402bd6de55f095dab15786764510ec /modules/examples/mod_example_hooks.c | |
parent | Start impl of expr conditions for runtime checks (diff) | |
download | apache2-0eddea67acc5a43e432882f5b49b82d6b1cfd71f.tar.xz apache2-0eddea67acc5a43e432882f5b49b82d6b1cfd71f.zip |
Added some more log numbers to log statements that
had none.
Those were not detected by the coccinelle script.
Only a few hard cases are remaining now.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1725548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/examples/mod_example_hooks.c')
-rw-r--r-- | modules/examples/mod_example_hooks.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/examples/mod_example_hooks.c b/modules/examples/mod_example_hooks.c index d818dc1f73..da00b8c700 100644 --- a/modules/examples/mod_example_hooks.c +++ b/modules/examples/mod_example_hooks.c @@ -492,7 +492,8 @@ static void trace_nocontext(apr_pool_t *p, const char *file, int line, */ #ifdef EXAMPLE_LOG_EACH - ap_log_perror(file, line, APLOG_MODULE_INDEX, APLOG_NOTICE, 0, p, "%s", note); + ap_log_perror(file, line, APLOG_MODULE_INDEX, APLOG_NOTICE, 0, p, + APLOGNO(03297) "%s", note); #endif } |