From: Arran Cudbard-Bell Date: Fri, 23 Mar 2018 13:42:50 +0000 (+0000) Subject: Fix some debug messages in fr_worker_get_request X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=071ad690d52ac7a560aee95ea4b36fa152bc1f9b;p=thirdparty%2Ffreeradius-server.git Fix some debug messages in fr_worker_get_request --- diff --git a/src/lib/io/worker.c b/src/lib/io/worker.c index fb6e99c30c7..6b6bc56995c 100644 --- a/src/lib/io/worker.c +++ b/src/lib/io/worker.c @@ -847,7 +847,7 @@ static REQUEST *fr_worker_get_request(fr_worker_t *worker, fr_time_t now) if (ret < 0) { RINDENT(); - RDEBUG("%s FAILED decoding packet", worker->name); + REDEBUG("%s FAILED decoding packet", worker->name); REXDENT(); talloc_free(ctx); nak: @@ -862,7 +862,7 @@ nak: listen->app->process_set(listen->app_instance, request); if (!request->async->process) { - ERROR("Protocol failed to set 'process' function"); + RERROR("Protocol failed to set 'process' function"); fr_worker_nak(worker, cd, now); return NULL; } @@ -886,7 +886,7 @@ nak: * already sent the reply. */ if (cd->request.is_dup) { - DEBUG("Got duplicate packet notice after we had sent a reply - ignoring"); + RDEBUG("Got duplicate packet notice after we had sent a reply - ignoring"); fr_channel_null_reply(request->async->channel); return NULL; }