debug msg
parent
2b97eaca48
commit
33adc0a68b
|
@ -35,16 +35,22 @@ func AckHandler() {
|
||||||
|
|
||||||
for _, webClient := range cache.WebClients {
|
for _, webClient := range cache.WebClients {
|
||||||
for _, msg := range webClient.SendVoiceQueueMessages {
|
for _, msg := range webClient.SendVoiceQueueMessages {
|
||||||
|
logger.Web.Debugln("ackHandler voice:", webClient.SendVoiceQueueMessages)
|
||||||
|
|
||||||
handleSendQueueMessage(currentTime, webClient, true, nil, msg)
|
handleSendQueueMessage(currentTime, webClient, true, nil, msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, msg := range webClient.SendMobileQueueMessages {
|
for _, msg := range webClient.SendMobileQueueMessages {
|
||||||
|
logger.Web.Debugln("ackHandler mobile:", webClient.SendMobileQueueMessages)
|
||||||
|
|
||||||
handleSendQueueMessage(currentTime, webClient, false, nil, msg)
|
handleSendQueueMessage(currentTime, webClient, false, nil, msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, mcClient := range cache.MinecraftClients {
|
for _, mcClient := range cache.MinecraftClients {
|
||||||
for _, msg := range mcClient.SendQueueMessages {
|
for _, msg := range mcClient.SendQueueMessages {
|
||||||
|
logger.Web.Debugln("ackHandler mcClient:", mcClient.SendQueueMessages)
|
||||||
|
|
||||||
handleSendQueueMessage(currentTime, nil, false, mcClient, msg)
|
handleSendQueueMessage(currentTime, nil, false, mcClient, msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue