Skip to content

Commit

Permalink
Improve log line slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Krappa322 committed Oct 13, 2024
1 parent 5a7d072 commit a8634e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/EventSequencer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,11 @@ bool EventSequencer::QueueIsEmpty()
{
bool isEmpty = (mQueuedEventCount.load(std::memory_order_acquire) == 0);

LogD("isEmpty={}, highestQueueSize={}", BOOL_STR(isEmpty), mHighestQueueSize.load(std::memory_order_relaxed));
LogD("isEmpty={}, highestQueueSize={} highestId={} queuedEventCount={}",
BOOL_STR(isEmpty),
mHighestQueueSize.load(std::memory_order_relaxed),
mHighestId.load(std::memory_order_relaxed),
mQueuedEventCount.load(std::memory_order_relaxed));
return isEmpty;
}

Expand Down

0 comments on commit a8634e5

Please sign in to comment.