Seperate KeepRendering reason more detail 40/309540/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Fri, 12 Apr 2024 04:57:18 +0000 (13:57 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Fri, 12 Apr 2024 04:57:18 +0000 (13:57 +0900)
Change-Id: Iac5b862d9c11dab3689aea740de50df66071324e
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali/internal/system/common/update-status-logger.cpp

index c2abeba..c88c889 100644 (file)
@@ -77,6 +77,16 @@ void UpdateStatusLogger::Log(unsigned int keepUpdatingStatus)
         oss += "<Render task waiting for completion> ";
       }
 
+      if(keepUpdatingStatus & Integration::KeepUpdating::FRAME_UPDATE_CALLBACK)
+      {
+        oss += "<FrameUpdateCallback::return true> ";
+      }
+
+      if(keepUpdatingStatus & Integration::KeepUpdating::RENDERER_CONTINUOUSLY)
+      {
+        oss += "<Renderer::RENDERING_BEHAVIOUR is CONTINUOUSLY> ";
+      }
+
       DALI_LOG_UPDATE_STATUS("%s\n", oss.c_str());
     }
   }