From bb371a70d077a0f70211a6ad5e62da849720b507 Mon Sep 17 00:00:00 2001 From: Ansgar Schmidt Date: Tue, 27 Nov 2018 01:55:16 +0100 Subject: [PATCH] Adding DebugLog entry for Queue size --- DAPNETGateway.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/DAPNETGateway.cpp b/DAPNETGateway.cpp index b7c47ec..4bf6a39 100644 --- a/DAPNETGateway.cpp +++ b/DAPNETGateway.cpp @@ -362,6 +362,7 @@ int CDAPNETGateway::run() } m_queue.push_front(message); + LogDebug("Messages in Queue %04u", m_queue.size()); } }