From ea11cc05f9ceb22f9111024fed62f2dc463d742f Mon Sep 17 00:00:00 2001 From: HaseenaSainul <41037131+HaseenaSainul@users.noreply.github.com> Date: Thu, 23 May 2024 17:23:30 +0530 Subject: [PATCH] Sync: Trace level for lock set to higher level than 1 (#1609) Co-authored-by: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> --- Source/core/Sync.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/core/Sync.cpp b/Source/core/Sync.cpp index f285e4aeb..d854f6c9d 100644 --- a/Source/core/Sync.cpp +++ b/Source/core/Sync.cpp @@ -925,11 +925,11 @@ namespace Core { if (nResult == ETIMEDOUT) { // Something went wrong, so assume... - TRACE_L1("Timed out waiting for event <%d>.", nTime); + TRACE_L5("Timed out waiting for event <%d>.", nTime); nResult = Core::ERROR_TIMEDOUT; } else if (nResult != 0) { // Something went wrong, so assume... - TRACE_L1("Waiting on semaphore failed. Error code <%d>", nResult); + TRACE_L5("Waiting on semaphore failed. Error code <%d>", nResult); nResult = Core::ERROR_GENERAL; }