From: Mathieu Desnoyers Date: Tue, 24 Jul 2012 18:33:12 +0000 (-0400) Subject: Cleanup: filter: turn bytecode linking error msg into debug X-Git-Tag: v2.1.0-rc1~15 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;h=0cbbe1f942b68d6a4945b91b5d1dac86fdd920bd;hp=a8909ba54718ed54cefb1b839a5d41a065df09f9;p=lttng-ust.git Cleanup: filter: turn bytecode linking error msg into debug This can be triggered by enable event on a wildcard, with some of the events that do not contain the requested fields. Signed-off-by: Mathieu Desnoyers --- diff --git a/liblttng-ust/lttng-filter.c b/liblttng-ust/lttng-filter.c index 2e9bc333..369e73aa 100644 --- a/liblttng-ust/lttng-filter.c +++ b/liblttng-ust/lttng-filter.c @@ -291,7 +291,7 @@ void lttng_filter_event_link_bytecode(struct ltt_event *event, ret = _lttng_filter_event_link_bytecode(event, filter_bytecode); if (ret) { - fprintf(stderr, "[lttng filter] error linking event bytecode\n"); + dbg_printf("[lttng filter] warning: cannot link event bytecode\n"); } }