From b355c13d36d78543a6cbd68f4d63fc406af2275c Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Mon, 24 Feb 2014 16:32:05 -0500 Subject: [PATCH] Make empty sections DEBUG3, not DEBUG2. If we know they're empty, we don't care to get told that on every packet. We'll take the chance with people who delete the sections, and then complain that they're not being processed. --- src/main/modules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/modules.c b/src/main/modules.c index 0ff1b78171e7..5bf2e7369a70 100644 --- a/src/main/modules.c +++ b/src/main/modules.c @@ -752,7 +752,7 @@ rlm_rcode_t indexed_modcall(rlm_components_t comp, int idx, REQUEST *request) if (idx == 0) { list = server->mc[comp]; - if (!list) RWDEBUG2("Empty %s section. Using default return values.", section_type_value[comp].section); + if (!list) RWDEBUG3("Empty %s section. Using default return values.", section_type_value[comp].section); } else { indexed_modcallable *this;