From: Alan T. DeKok Date: Mon, 19 Dec 2016 19:26:16 +0000 (-0500) Subject: simplify debug X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaec112edd2454b022be9ad7bd0653fd59dd1a13;p=thirdparty%2Ffreeradius-server.git simplify debug --- diff --git a/src/util/time.c b/src/util/time.c index e667383a9d9..25295ce58d6 100644 --- a/src/util/time.c +++ b/src/util/time.c @@ -250,16 +250,13 @@ void fr_time_tracking_debug(fr_time_tracking_t *tt, FILE *fp) { #define DPRINT(_x) fprintf(fp, "\t" #_x " = %zd\n", tt->_x); - fprintf(fp, "Absolute timers\n"); DPRINT(start); DPRINT(end); DPRINT(when); - fprintf(fp, "When it last yielded / resumed\n"); DPRINT(yielded); DPRINT(resumed); - fprintf(fp, "Time spent processing this request\n"); DPRINT(predicted); DPRINT(running); DPRINT(waiting);