From: Alan T. DeKok Date: Thu, 24 Oct 2024 20:24:00 +0000 (-0400) Subject: timeouts are perhaps not quite errors X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a61a0f82c8fdf45292f7ca5b51b68fa56001f965;p=thirdparty%2Ffreeradius-server.git timeouts are perhaps not quite errors --- diff --git a/src/lib/unlang/module.c b/src/lib/unlang/module.c index 69373d5937f..c5b6f752674 100644 --- a/src/lib/unlang/module.c +++ b/src/lib/unlang/module.c @@ -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; }