Skip to content

Commit

Permalink
Sync: Trace level for lock set to higher level than 1 (#1609)
Browse files Browse the repository at this point in the history
Co-authored-by: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com>
  • Loading branch information
HaseenaSainul and VeithMetro authored May 23, 2024
1 parent f921ba6 commit ea11cc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/core/Sync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit ea11cc0

Please sign in to comment.