From eebfc455c637622f03b1c2c50741ec0c0e47b5a4 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Tue, 30 Sep 2014 08:49:29 +0200 Subject: [PATCH] CComponentsTimer: log output moved Log message was shown on each call of startTimer. --- src/gui/components/cc_timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/components/cc_timer.cpp b/src/gui/components/cc_timer.cpp index d95d299bc..42efb2b99 100644 --- a/src/gui/components/cc_timer.cpp +++ b/src/gui/components/cc_timer.cpp @@ -81,8 +81,8 @@ bool CComponentsTimer::startTimer() dprintf(DEBUG_NORMAL,"[CComponentsTimer] [%s] pthread_create %s\n", __func__, strerror(errno)); return false; } + dprintf(DEBUG_INFO,"[CComponentsTimer] [%s] timer thread [%lu] created with interval = %d\n", __func__, tm_thread, tm_interval); } - dprintf(DEBUG_INFO,"[CComponentsTimer] [%s] timer thread [%lu] created with interval = %d\n", __func__, tm_thread, tm_interval); //ensure kill of thread on any restart of neutrino CNeutrinoApp::getInstance()->OnBeforeRestart.connect(sl);