]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
timeouts are perhaps not quite errors
authorAlan T. DeKok <aland@freeradius.org>
Thu, 24 Oct 2024 20:24:00 +0000 (16:24 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 24 Oct 2024 20:40:42 +0000 (16:40 -0400)
src/lib/unlang/module.c

index 69373d5937f9df9a7ed920976d73df02fa387edb..c5b6f75267470ceeb11f7deee7249d21076559b7 100644 (file)
@@ -712,13 +712,13 @@ static void unlang_module_event_retry_handler(UNUSED fr_event_list_t *el, fr_tim
                return;
 
        case FR_RETRY_MRD:
-               REDEBUG("Reached max_rtx_duration (%pVs > %pVs) - sending timeout",
+               RDEBUG("Reached max_rtx_duration (%pVs > %pVs) - sending timeout",
                        fr_box_time_delta(fr_time_sub(now, state->retry.start)), fr_box_time_delta(state->retry.config->mrd));
                break;
 
        case FR_RETRY_MRC:
-               REDEBUG("Reached max_rtx_count (%u > %u) - sending timeout",
-                       state->retry.count, state->retry.config->mrc);
+               RDEBUG("Reached max_rtx_count %u- sending timeout",
+                       state->retry.config->mrc);
                break;
        }