Cleanup debug printf in test
[lttng-tools.git] / tests / ust / low-throughput / main.c
index c8802e7df5262adbcbb90fd44f1363fa1e9988e1..06ab9ef825ae20c6c73c08ae7d9091aa0dfceabe 100644 (file)
@@ -39,18 +39,15 @@ static void *th_event_minute(void *data)
                /* 20 minutes tracepoint */
                if ((i % 20) == 0) {
                        tracepoint(tp, slow, i, "twenty");
-                       printf("Twenty: %d\n", i);
                }
 
                /* 10 minutes tracepoint */
                if ((i % 10) == 0) {
                        tracepoint(tp, slow, i, "ten");
-                       printf("Ten: %d\n", i);
                }
 
                /* 1 minute tracepoint */
                tracepoint(tp, slow, i, "one");
-               printf("One: %d\n", i);
        }
 
        return NULL;
This page took 0.023004 seconds and 4 git commands to generate.