From 753e1b51796c2233b6ddecdf751400f9b2cddc9f Mon Sep 17 00:00:00 2001 From: Pierre-Marc Fournier Date: Mon, 8 Mar 2010 23:48:56 -0500 Subject: [PATCH] change benign WARN()s to DBG()s --- libust/tracectl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.34.1