debug msg

master
Alex 2022-03-14 21:32:25 +01:00
parent 2b97eaca48
commit 33adc0a68b
1 changed files with 6 additions and 0 deletions

View File

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