Remove console output that should be turned into debug
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 16 Nov 2011 03:25:25 +0000 (22:25 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 16 Nov 2011 03:25:25 +0000 (22:25 -0500)
But no debug log facility for this library which is included in
sessiond (yet).

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
liblttng-ust-comm/lttng-ust-comm.c

index f013c2cd7316e459ec21fd100c4d12d7ff92a025..e7d43e98dc57df9bc048caa19b972a2592d57a91 100644 (file)
@@ -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;
 }
This page took 0.025224 seconds and 4 git commands to generate.