Reorder messages

This commit is contained in:
DBotThePony 2024-12-02 12:29:37 +07:00
parent 2b698be166
commit 885bccb2d2
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -121,8 +121,8 @@ abstract class Connection(val side: ConnectionSide, val type: ConnectionType) :
open fun bind(channel: Channel) {
scope = CoroutineScope(channel.eventLoop().asCoroutineDispatcher() + SupervisorJob() + CoroutineExceptionHandler { coroutineContext, throwable ->
disconnect("Uncaught exception in one of connection' coroutines: $throwable")
LOGGER.fatal("Uncaught exception in one of $this coroutines", throwable)
disconnect("Uncaught exception in one of connection' coroutines: $throwable")
})
channel.config().setOption(ChannelOption.TCP_NODELAY, true)