Add log for checking window status 96/209696/1
authorSunghyun kim <scholb.kim@samsung.com>
Wed, 10 Jul 2019 05:07:20 +0000 (14:07 +0900)
committerSunghyun kim <scholb.kim@samsung.com>
Wed, 10 Jul 2019 05:07:20 +0000 (14:07 +0900)
Need to print Log when window status is changed.

Change-Id: I4b825b344ef280f3a448eb115e57668a0c954db0

dali/internal/window-system/common/window-impl.cpp

index 568b79a..981ede0 100644 (file)
@@ -164,16 +164,19 @@ std::string Window::GetClassName() const
 void Window::Raise()
 {
   mWindowBase->Raise();
+  DALI_LOG_RELEASE_INFO( "Window (%p) Raise() \n", this );
 }
 
 void Window::Lower()
 {
   mWindowBase->Lower();
+  DALI_LOG_RELEASE_INFO( "Window (%p) Lower() \n", this );
 }
 
 void Window::Activate()
 {
   mWindowBase->Activate();
+  DALI_LOG_RELEASE_INFO( "Window (%p) Activate() \n", this );
 }
 
 uint32_t Window::GetLayerCount() const