From 17d43c48af7cbcd6c619514c6eabd176b5558dc4 Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Thu, 30 May 2024 13:18:09 +0900 Subject: [PATCH] Remove render once trace log Since it print too much logs, let we remove it Change-Id: I8987d8fe6b184938780f268f0349702456dd0433 Signed-off-by: Eunki, Hong --- dali/internal/common/core-impl.cpp | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/dali/internal/common/core-impl.cpp b/dali/internal/common/core-impl.cpp index bf43498..0b06b44 100644 --- a/dali/internal/common/core-impl.cpp +++ b/dali/internal/common/core-impl.cpp @@ -508,13 +508,7 @@ void Core::RunProcessors() { if(!mProcessorUnregistered) { - DALI_TRACE_BEGIN_WITH_MESSAGE_GENERATOR(gTraceFilter, "DALI_CORE_RUN_PROCESSOR_ONCE", [&](std::ostringstream& oss) { - oss << "[" << processor->GetProcessorName() << "]"; - }); processor->Process(false); - DALI_TRACE_END_WITH_MESSAGE_GENERATOR(gTraceFilter, "DALI_CORE_RUN_PROCESSOR_ONCE", [&](std::ostringstream& oss) { - oss << "[" << processor->GetProcessorName() << "]"; - }); } else { @@ -523,13 +517,7 @@ void Core::RunProcessors() auto iter = std::find(mProcessorsOnce[currentIndex].Begin(), mProcessorsOnce[currentIndex].End(), processor); if(iter != mProcessorsOnce[currentIndex].End()) { - DALI_TRACE_BEGIN_WITH_MESSAGE_GENERATOR(gTraceFilter, "DALI_CORE_RUN_PROCESSOR_ONCE", [&](std::ostringstream& oss) { - oss << "[" << processor->GetProcessorName() << "]"; - }); processor->Process(false); - DALI_TRACE_END_WITH_MESSAGE_GENERATOR(gTraceFilter, "DALI_CORE_RUN_PROCESSOR_ONCE", [&](std::ostringstream& oss) { - oss << "[" << processor->GetProcessorName() << "]"; - }); } } } @@ -627,13 +615,7 @@ void Core::RunPostProcessors() { if(!mPostProcessorUnregistered) { - DALI_TRACE_BEGIN_WITH_MESSAGE_GENERATOR(gTraceFilter, "DALI_CORE_RUN_POST_PROCESSOR_ONCE", [&](std::ostringstream& oss) { - oss << "[" << processor->GetProcessorName() << "]"; - }); processor->Process(true); - DALI_TRACE_END_WITH_MESSAGE_GENERATOR(gTraceFilter, "DALI_CORE_RUN_POST_PROCESSOR_ONCE", [&](std::ostringstream& oss) { - oss << "[" << processor->GetProcessorName() << "]"; - }); } else { @@ -642,13 +624,7 @@ void Core::RunPostProcessors() auto iter = std::find(mPostProcessorsOnce[currentIndex].Begin(), mPostProcessorsOnce[currentIndex].End(), processor); if(iter != mPostProcessorsOnce[currentIndex].End()) { - DALI_TRACE_BEGIN_WITH_MESSAGE_GENERATOR(gTraceFilter, "DALI_CORE_RUN_POST_PROCESSOR_ONCE", [&](std::ostringstream& oss) { - oss << "[" << processor->GetProcessorName() << "]"; - }); processor->Process(true); - DALI_TRACE_END_WITH_MESSAGE_GENERATOR(gTraceFilter, "DALI_CORE_RUN_POST_PROCESSOR_ONCE", [&](std::ostringstream& oss) { - oss << "[" << processor->GetProcessorName() << "]"; - }); } } } -- 2.7.4