Fix: Don't output to stdout from lttng-ctl
[lttng-tools.git] / src / lib / lttng-ctl / lttng-ctl.c
index 756fd6b590ef80bd89c7f8fabbdf67f765d4e135..272c70299b089fe79fda1ab17369f10d69eb9b26 100644 (file)
@@ -579,9 +579,6 @@ static int _lttng_stop_tracing(const char *session_name, int wait)
                goto end;
        }
 
-       _MSG("Waiting for data availability");
-       fflush(stdout);
-
        /* Check for data availability */
        do {
                data_ret = lttng_data_pending(session_name);
@@ -597,13 +594,9 @@ static int _lttng_stop_tracing(const char *session_name, int wait)
                 */
                if (data_ret) {
                        usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME);
-                       _MSG(".");
-                       fflush(stdout);
                }
        } while (data_ret != 0);
 
-       MSG("");
-
 end:
 error:
        return ret;
This page took 0.028497 seconds and 5 git commands to generate.