make sure debug logging is actually debug

This commit is contained in:
NikkyAI 2018-11-23 19:38:18 +01:00
parent d4802d372f
commit 04bc439880
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ open class MessageHandler : CoroutineScope {
logger.error("missing gateway on message: $msg")
return
}
logger.info("Transmitting: $msg")
logger.debug("Transmitting: $msg")
sendChannel.send(msg)
// }
}