Commit 426c2c63 authored by Him188's avatar Him188

Multiline apt

parent d9c89590
......@@ -217,7 +217,10 @@ internal class TIMPCBotNetworkHandler internal constructor(coroutineContext: Cor
if (!packet::class.annotations.filterIsInstance<NoLog>().any()) {
if ((packet as? BroadcastControllable)?.shouldBroadcast != false) {
bot.logger.verbose("Packet received: $packet")
bot.logger.verbose("Packet received: ${packet.toString()
.replace("\n\r", """\n""")
.replace("\n", """\n""")
.replace("\r", """\n""")}")
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment