]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
simplify debug
authorAlan T. DeKok <aland@freeradius.org>
Mon, 19 Dec 2016 19:26:16 +0000 (14:26 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 19 Dec 2016 19:26:16 +0000 (14:26 -0500)
src/util/time.c

index e667383a9d943b0bfe4590125351adf3ff9d57bc..25295ce58d659d97b9747774da9a974909e0e8a8 100644 (file)
@@ -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);