Revert "[4.0] add Timer debugging log temporarily, will be removed later" 23/163023/1
authorHeeyong Song <heeyong.song@samsung.com>
Thu, 7 Dec 2017 02:35:12 +0000 (11:35 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 7 Dec 2017 02:35:18 +0000 (11:35 +0900)
This reverts commit f327135949c08f2b070419fdcae031890f43af51.

Change-Id: I20d4714cab3fb2314e2bdcbd77925eed7499995b

adaptors/common/event-loop/ecore/ecore-timer-impl.cpp [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 4663ad1..a05b13f
@@ -69,7 +69,6 @@ struct Timer::Impl
 TimerPtr Timer::New( unsigned int milliSec )
 {
   TimerPtr timer( new Timer( milliSec ) );
-  DALI_LOG_ERROR("Timer::New: called [%p]\n", timer.Get());
   return timer;
 }
 
@@ -89,8 +88,6 @@ void Timer::Start()
   // Timer should be used in the event thread
   DALI_ASSERT_DEBUG( Adaptor::IsAvailable() );
 
-  DALI_LOG_ERROR("Timer::Start: called [%p]\n", this);
-
   if(mImpl->mId != NULL)
   {
     Stop();
@@ -103,8 +100,6 @@ void Timer::Stop()
   // Timer should be used in the event thread
   DALI_ASSERT_DEBUG( Adaptor::IsAvailable() );
 
-  DALI_LOG_ERROR("Timer::Stop: called [%p]\n", this);
-
   ResetTimerData();
 }
 
@@ -129,8 +124,6 @@ bool Timer::Tick()
 
   bool retVal( false );
 
-  DALI_LOG_ERROR("Timer::Tick: called [%p]\n", this);
-
   // Override with new signal if used
   if( !mTickSignal.Empty() )
   {