Don't print burst reports; they're too noisy with low message rates

This commit is contained in:
Tony Garnock-Jones 2011-01-04 19:24:29 -05:00
parent e519fae882
commit e469704697
1 changed files with 2 additions and 0 deletions

View File

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