[4.0] add Timer debugging log temporarily, will be removed later 94/162494/2
authordongsug.song <dongsug.song@samsung.com>
Mon, 4 Dec 2017 03:12:43 +0000 (12:12 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Mon, 4 Dec 2017 05:04:49 +0000 (05:04 +0000)
Change-Id: I166c9aefdac49da4e246a998dcb7ce229836a0ad
Signed-off-by: dongsug.song <dongsug.song@samsung.com>
adaptors/common/event-loop/ecore/ecore-timer-impl.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index a05b13f..4663ad1
@@ -69,6 +69,7 @@ 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;
 }
 
@@ -88,6 +89,8 @@ 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();
@@ -100,6 +103,8 @@ 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();
 }
 
@@ -124,6 +129,8 @@ bool Timer::Tick()
 
   bool retVal( false );
 
+  DALI_LOG_ERROR("Timer::Tick: called [%p]\n", this);
+
   // Override with new signal if used
   if( !mTickSignal.Empty() )
   {