From: Philippe Proulx Date: Wed, 6 Mar 2019 23:15:06 +0000 (-0500) Subject: sink.utils.counter: use a default step of 10,000 X-Git-Tag: v2.0.0-pre5~133 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=a79f976c26dcf430867c26974308659909c5fad6 sink.utils.counter: use a default step of 10,000 1000 makes this way too fast for the terminal. Signed-off-by: Philippe Proulx --- diff --git a/plugins/utils/counter/counter.c b/plugins/utils/counter/counter.c index f8343788..97bed28d 100644 --- a/plugins/utils/counter/counter.c +++ b/plugins/utils/counter/counter.c @@ -155,7 +155,7 @@ bt_self_component_status counter_init( } counter->last_printed_total = -1ULL; - counter->step = 1000; + counter->step = 10000; step = bt_value_map_borrow_entry_value_const(params, "step"); if (step && bt_value_is_integer(step)) { int64_t val;