From: Mathieu Desnoyers Date: Wed, 3 Oct 2012 14:48:05 +0000 (-0400) Subject: Fix: be quiet on filter linker error X-Git-Tag: v2.1.0-rc2~31 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;ds=sidebyside;h=c433c3cba761d3b99e660f29b77a0edbbe73d50a;p=lttng-ust.git Fix: be quiet on filter linker error Could be reproduced by starting the application before enabling the event with filter. Fixes #362 Signed-off-by: Mathieu Desnoyers --- diff --git a/liblttng-ust/lttng-filter.c b/liblttng-ust/lttng-filter.c index 68a59311..1a0921fd 100644 --- a/liblttng-ust/lttng-filter.c +++ b/liblttng-ust/lttng-filter.c @@ -315,7 +315,7 @@ void lttng_filter_wildcard_link_bytecode(struct session_wildcard *wildcard) ret = _lttng_filter_event_link_bytecode(event, wildcard->filter_bytecode); if (ret) { - fprintf(stderr, "[lttng filter] error linking wildcard bytecode\n"); + dbg_printf("[lttng filter] error linking wildcard bytecode"); } }