net/server_epoll.lua
changeset 10421 d8a0b0d21c81
parent 10420 6af8c812a885
child 10422 c8aa66595072
--- 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