From 47a70130290016e84d506ae59a0278c512e506f8 Mon Sep 17 00:00:00 2001 From: o9000 Date: Sun, 28 Jun 2015 11:34:53 +0200 Subject: [PATCH] Remove noisy debug messages --- src/tint.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/tint.c b/src/tint.c index b4c0b0e..1dc7656 100644 --- a/src/tint.c +++ b/src/tint.c @@ -1174,11 +1174,7 @@ start: timeout = 0; // Wait for X Event or a Timer - if (systray_profile) - fprintf(stderr, "[%f] %s:%d waiting for events, timeout = %f...\n", profiling_get_time(), __FUNCTION__, __LINE__, timeout ? (timeout->tv_sec + timeout->tv_usec * 1.0e-6) : 0); if (XPending(server.dsp) > 0 || select(maxfd+1, &fdset, 0, 0, timeout) >= 0) { - if (systray_profile) - fprintf(stderr, "[%f] %s:%d processing events\n", profiling_get_time(), __FUNCTION__, __LINE__); if (sn_pipe_valid) { char buffer[1]; while (read(sn_pipe[0], buffer, sizeof(buffer)) > 0) {