]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
clean up debug3 messages
authorAlan T. DeKok <aland@freeradius.org>
Tue, 2 Oct 2018 17:20:17 +0000 (13:20 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 3 Oct 2018 15:13:48 +0000 (11:13 -0400)
src/lib/io/worker.c

index 4edfa9d8403047767c36d848caf650aabaad3f58..ce8b0c0f3dbeb204845cecb633e4558cf585577b 100644 (file)
@@ -1098,12 +1098,12 @@ static int fr_worker_pre_event(void *ctx, struct timeval *wake)
                return 0;
        }
 
-       DEBUG3("\t%ssleeping running %u, localized %u, to_decode %u",
+       DEBUG3("\tWorker %s sleeping running %u, localized %u, to_decode %u",
               worker->name,
               fr_heap_num_elements(worker->runnable),
               fr_heap_num_elements(worker->localized.heap),
               fr_heap_num_elements(worker->to_decode.heap));
-       DEBUG3("\t%srequests %" PRIu64 ", decoded %" PRIu64 ", replied %" PRIu64 " active %" PRIu64 "",
+       DEBUG3("\tWorker %s requests %" PRIu64 ", decoded %" PRIu64 ", replied %" PRIu64 " active %" PRIu64 "",
               worker->name, worker->stats.in, worker->num_decoded,
               worker->stats.out, worker->num_active);
 
@@ -1429,7 +1429,7 @@ static void fr_worker_post_event(UNUSED fr_event_list_t *el, UNUSED struct timev
         *      cleanups are done periodically.
         */
        if ((now - worker->checked_timeout) > (NANOSEC / 10)) {
-               DEBUG3("\t%schecking timeouts", worker->name);
+               DEBUG3("\tWorker %s checking timeouts", worker->name);
                fr_worker_check_timeouts(worker, now);
        }