# HG changeset patch # User Kim Alvefur # Date 1581781398 -3600 # Node ID 228277be4a28dfc7763bdadbf347e03c9ffb1149 # Parent 2bd17e0432754884d815706e0c13dc97f8a401ed net.server_epoll: Reduce log level of TLS handshake errors to debug These are triggered all the time by random HTTPS connections, so they are mostly just useless noise. When you actually do need them, you probably have debug logging enabled too, since these messages are fairly useless without more context. diff -r 2bd17e043275 -r 228277be4a28 net/server_epoll.lua --- a/net/server_epoll.lua Thu Feb 13 23:03:03 2020 +0100 +++ b/net/server_epoll.lua Sat Feb 15 16:43:18 2020 +0100 @@ -581,7 +581,7 @@ self:set(false, true); self:setwritetimeout(cfg.ssl_handshake_timeout); else - self:error("TLS handshake error: %s", err); + self:debug("TLS handshake error: %s", err); self:on("disconnect", err); self:destroy(); end