From: Pierre-Marc Fournier Date: Tue, 9 Mar 2010 04:48:56 +0000 (-0500) Subject: change benign WARN()s to DBG()s X-Git-Tag: v0.4~37 X-Git-Url: https://git.lttng.org/?p=ust.git;a=commitdiff_plain;h=753e1b51796c2233b6ddecdf751400f9b2cddc9f change benign WARN()s to DBG()s --- diff --git a/libust/tracectl.c b/libust/tracectl.c index e40a905..5d06f28 100644 --- a/libust/tracectl.c +++ b/libust/tracectl.c @@ -654,7 +654,7 @@ static int do_cmd_get_subbuffer(const char *recvbuf, struct ustcomm_source *src) if(trace == NULL) { int result; - WARN("Cannot find trace. It was likely destroyed by the user."); + DBG("Cannot find trace. It was likely destroyed by the user."); result = ustcomm_send_reply(&ustcomm_app.server, "NOTFOUND", src); if(result) { ERR("ustcomm_send_reply failed"); @@ -761,7 +761,7 @@ static int do_cmd_put_subbuffer(const char *recvbuf, struct ustcomm_source *src) trace = _ltt_trace_find(trace_name); if(trace == NULL) { - WARN("Cannot find trace. It was likely destroyed by the user."); + DBG("Cannot find trace. It was likely destroyed by the user."); result = ustcomm_send_reply(&ustcomm_app.server, "NOTFOUND", src); if(result) { ERR("ustcomm_send_reply failed");