From c433c3cba761d3b99e660f29b77a0edbbe73d50a Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 3 Oct 2012 10:48:05 -0400 Subject: [PATCH] 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 --- liblttng-ust/lttng-filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } } -- 2.34.1