From e4697046977601420f195d641a49f0bcd81c844a Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Tue, 4 Jan 2011 19:24:29 -0500 Subject: [PATCH] Don't print burst reports; they're too noisy with low message rates --- queue.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/queue.c b/queue.c index 756225c..3017538 100644 --- a/queue.c +++ b/queue.c @@ -67,11 +67,13 @@ static void queue_destructor(node_t *n) { } static void end_burst(queue_extension_t *q, size_t *burst_count_ptr, size_t total_count) { +#if 0 if (*burst_count_ptr > 0) { info("Queue <<%.*s>>: burst count %lu; total %lu\n", sexp_data(q->name).len, sexp_data(q->name).bytes, *burst_count_ptr, total_count); } +#endif *burst_count_ptr = 0; }