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) } }