Listen for new servermessages in MessageParser

Signed-off-by: observer <admin@shr4pnel.com>
This commit is contained in:
2026-08-14 23:46:25 +01:00
committed by observer
parent 6dab22a04c
commit bd2e330565
2 changed files with 33 additions and 4 deletions
@@ -17,7 +17,7 @@ class MessageWriter(socket: Socket, scope: CoroutineScope) : MessageIO(socket, s
send = socket.openWriteChannel()
for (msg in outgoingMessages) {
logger.debug { msg.toWireIntermediate() }
logger.debug { "Sending: ${msg.toWireIntermediate()}" }
send.writeFully(msg.toWire())
send.flush()
}