# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1571508681 -7200
# Node ID d8a0b0d21c81c6f131126d1f7e278d3f8ce5db2e
# Parent  6af8c812a885c3e2809df7216e25f48d58c113c1
net.server_epoll: Improve read timeout debug messages

diff -r 6af8c812a885 -r d8a0b0d21c81 net/server_epoll.lua
--- a/net/server_epoll.lua	Sat Oct 19 20:10:14 2019 +0200
+++ b/net/server_epoll.lua	Sat Oct 19 20:11:21 2019 +0200
@@ -261,10 +261,10 @@
 	else
 		self._readtimeout = addtimer(t, function ()
 			if self:on("readtimeout") then
-				self:debug("Read timeout, handled");
+				self:debug("Read timeout handled");
 				return cfg.read_timeout;
 			else
-				self:debug("Read timeout, fatal");
+				self:debug("Read timeout not handled, disconnecting");
 				self:on("disconnect", "read timeout");
 				self:destroy();
 			end