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; }