From a8634e58e8a578c42a6cebf093aa13e90d71c85d Mon Sep 17 00:00:00 2001 From: Kappa322 Date: Sun, 13 Oct 2024 18:41:54 +0200 Subject: [PATCH] Improve log line slightly --- src/EventSequencer.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/EventSequencer.cpp b/src/EventSequencer.cpp index 466a7b0..4077c2f 100644 --- a/src/EventSequencer.cpp +++ b/src/EventSequencer.cpp @@ -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; }