From: Mathieu Desnoyers Date: Wed, 16 Nov 2011 03:25:25 +0000 (-0500) Subject: Remove console output that should be turned into debug X-Git-Tag: v1.9.1~95 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=e55f988e38f1a5c23955595ea327c52cabc5d183;p=lttng-ust.git Remove console output that should be turned into debug But no debug log facility for this library which is included in sessiond (yet). Signed-off-by: Mathieu Desnoyers --- diff --git a/liblttng-ust-comm/lttng-ust-comm.c b/liblttng-ust-comm/lttng-ust-comm.c index f013c2cd..e7d43e98 100644 --- a/liblttng-ust-comm/lttng-ust-comm.c +++ b/liblttng-ust-comm/lttng-ust-comm.c @@ -390,8 +390,12 @@ int ustcomm_recv_app_reply(int sock, struct ustcomm_ust_reply *lur, return -EINVAL; } if (lur->ret_code != USTCOMM_OK) { - fprintf(stderr, "remote operation failed with code %d.\n", - lur->ret_code); + /* + * Some errors are normal.. we should put this + * in a debug level message... + * fprintf(stderr, "remote operation failed with code %d.\n", + * lur->ret_code); + */ return lur->ret_code; } return 0; @@ -473,7 +477,10 @@ int ustcomm_recv_fd(int sock) for (i = 0; i < sizeof(int); i++) tmp.vc[i] = CMSG_DATA(cmsg)[i]; ret = tmp.vi; - fprintf(stderr, "received fd %d\n", ret); + /* + * Useful for fd leak debug. + * fprintf(stderr, "received fd %d\n", ret); + */ end: return ret; }