From 33adc0a68bf389a8653fc3a6b01086516e16721c Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 14 Mar 2022 21:32:25 +0100 Subject: [PATCH] debug msg --- serverCommunication/serverCommunication.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/serverCommunication/serverCommunication.go b/serverCommunication/serverCommunication.go index 3788e1d..4333004 100644 --- a/serverCommunication/serverCommunication.go +++ b/serverCommunication/serverCommunication.go @@ -35,16 +35,22 @@ func AckHandler() { for _, webClient := range cache.WebClients { for _, msg := range webClient.SendVoiceQueueMessages { + logger.Web.Debugln("ackHandler voice:", webClient.SendVoiceQueueMessages) + handleSendQueueMessage(currentTime, webClient, true, nil, msg) } for _, msg := range webClient.SendMobileQueueMessages { + logger.Web.Debugln("ackHandler mobile:", webClient.SendMobileQueueMessages) + handleSendQueueMessage(currentTime, webClient, false, nil, msg) } } for _, mcClient := range cache.MinecraftClients { for _, msg := range mcClient.SendQueueMessages { + logger.Web.Debugln("ackHandler mcClient:", mcClient.SendQueueMessages) + handleSendQueueMessage(currentTime, nil, false, mcClient, msg) } }