diff options
author | Stefan Fritsch <sf@apache.org> | 2010-06-06 18:59:50 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2010-06-06 18:59:50 +0200 |
commit | ebb62867fb8a335f70c30e01280cc30f5c4d0597 (patch) | |
tree | 29aeee2174a4d451a238e5774296194856db7aaf /modules/debugging | |
parent | Fix some modules to make them compile with per-module loglevels. (diff) | |
download | apache2-ebb62867fb8a335f70c30e01280cc30f5c4d0597.tar.xz apache2-ebb62867fb8a335f70c30e01280cc30f5c4d0597.zip |
Use the new APLOG_USE_MODULE/AP_DECLARE_MODULE macros everywhere to take
advantage of per-module loglevels
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@951895 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/debugging')
-rw-r--r-- | modules/debugging/mod_bucketeer.c | 2 | ||||
-rw-r--r-- | modules/debugging/mod_dumpio.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/debugging/mod_bucketeer.c b/modules/debugging/mod_bucketeer.c index ff6f5ebd49..4142cbe22e 100644 --- a/modules/debugging/mod_bucketeer.c +++ b/modules/debugging/mod_bucketeer.c @@ -176,7 +176,7 @@ static const command_rec bucketeer_filter_cmds[] = { {NULL} }; -module AP_MODULE_DECLARE_DATA bucketeer_module = { +AP_DECLARE_MODULE(bucketeer) = { STANDARD20_MODULE_STUFF, NULL, NULL, diff --git a/modules/debugging/mod_dumpio.c b/modules/debugging/mod_dumpio.c index 04ccde01b3..d8d8c2e63d 100644 --- a/modules/debugging/mod_dumpio.c +++ b/modules/debugging/mod_dumpio.c @@ -266,7 +266,7 @@ static const command_rec dumpio_cmds[] = { { NULL } }; -module AP_MODULE_DECLARE_DATA dumpio_module = { +AP_DECLARE_MODULE(dumpio) = { STANDARD20_MODULE_STUFF, NULL, NULL, |