From: Alan T. DeKok Date: Mon, 17 Aug 2015 08:46:55 +0000 (+0200) Subject: We don't need these messages in normal debug mode X-Git-Tag: release_3_0_10~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49c4141ec0d41aacdb2c8e857aff1314b68799e9;p=thirdparty%2Ffreeradius-server.git We don't need these messages in normal debug mode --- diff --git a/src/modules/rlm_eap/rlm_eap.c b/src/modules/rlm_eap/rlm_eap.c index 24163653fd9..750f8a46733 100644 --- a/src/modules/rlm_eap/rlm_eap.c +++ b/src/modules/rlm_eap/rlm_eap.c @@ -694,12 +694,12 @@ static rlm_rcode_t CC_HINT(nonnull) mod_post_auth(void *instance, REQUEST *reque if (!vp || (vp->vp_integer != PW_POST_AUTH_TYPE_REJECT)) return RLM_MODULE_NOOP; if (!fr_pair_find_by_num(request->packet->vps, PW_EAP_MESSAGE, 0, TAG_ANY)) { - RDEBUG2("Request didn't contain an EAP-Message, not inserting EAP-Failure"); + RDEBUG3("Request didn't contain an EAP-Message, not inserting EAP-Failure"); return RLM_MODULE_NOOP; } if (fr_pair_find_by_num(request->reply->vps, PW_EAP_MESSAGE, 0, TAG_ANY)) { - RDEBUG2("Reply already contained an EAP-Message, not inserting EAP-Failure"); + RDEBUG3("Reply already contained an EAP-Message, not inserting EAP-Failure"); return RLM_MODULE_NOOP; }