From df8b6850cb48bee2d83177b85aa6663888edba25 Mon Sep 17 00:00:00 2001 From: Jan Pazdziora Date: Fri, 6 Dec 2013 15:14:22 +0800 Subject: In the log message, show the module name. --- mod_intercept_form_submit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod_intercept_form_submit.c b/mod_intercept_form_submit.c index 4d14990..3a64196 100644 --- a/mod_intercept_form_submit.c +++ b/mod_intercept_form_submit.c @@ -115,10 +115,10 @@ int pam_authenticate_with_login_password(request_rec * r, const char * pam_servi ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, r->server, "mod_intercept_form_submit: PAM authentication passed for user %s", login); pam_end(pamh, ret); if (lookup_identity_hook_fn) { - ap_log_error(APLOG_MARK, APLOG_INFO, 0, r->server, "calling lookup_identity_hook"); + ap_log_error(APLOG_MARK, APLOG_INFO, 0, r->server, "mod_intercept_form_submit: calling lookup_identity_hook"); lookup_identity_hook_fn(r); } else { - ap_log_error(APLOG_MARK, APLOG_INFO, 0, r->server, "not calling lookup_identity_hook, is NULL"); + ap_log_error(APLOG_MARK, APLOG_INFO, 0, r->server, "mod_intercept_form_submit: not calling lookup_identity_hook, is NULL"); } return 1; } -- cgit