Skip to content

Commit

Permalink
use DEBUG level instead of WARNING in Apache hook tracing
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Zandbelt <hans.zandbelt@zmartzone.eu>
  • Loading branch information
zandbelt committed Jan 31, 2021
1 parent 4536b2e commit 790fe3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/oauth2/apache.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ apr_status_t oauth2_apache_child_cleanup(void *data, module *m,
#define OAUTH2_APACHE_CHILD_CLEANUP(foo) \
static apr_status_t foo##_child_cleanup(void *data) \
{ \
ap_log_error(APLOG_MARK, APLOG_WARNING, 0, \
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, \
(const server_rec *)data, "%s: %s", __FUNCTION__, \
"enter"); \
return oauth2_apache_child_cleanup( \
Expand All @@ -114,7 +114,7 @@ apr_status_t oauth2_apache_parent_cleanup(void *data, module *m,
#define OAUTH2_APACHE_PARENT_CLEANUP(foo) \
static apr_status_t foo##_parent_cleanup(void *data) \
{ \
ap_log_error(APLOG_MARK, APLOG_WARNING, 0, \
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, \
(const server_rec *)data, "%s: %s", __FUNCTION__, \
"enter"); \
return oauth2_apache_parent_cleanup( \
Expand All @@ -138,7 +138,7 @@ int oauth2_apache_post_config(apr_pool_t *pool, apr_pool_t *p1, apr_pool_t *p2,
apr_pool_t * pool, apr_pool_t * p1, apr_pool_t * p2, \
server_rec * s) \
{ \
ap_log_error(APLOG_MARK, APLOG_WARNING, 0, \
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, \
(const server_rec *)s, "%s: %s", __FUNCTION__, \
"enter"); \
return oauth2_apache_post_config( \
Expand Down

0 comments on commit 790fe3b

Please sign in to comment.