sessionmanager: Demote write error to debug message
authorKim Alvefur <zash@zash.se>
Thu, 5 Nov 2015 12:35:16 +0000 (13:35 +0100)
committerKim Alvefur <zash@zash.se>
Thu, 5 Nov 2015 12:35:16 +0000 (13:35 +0100)
core/sessionmanager.lua

index f168c8e9594d156d3028e9d135fc4f5ef2065e9c..6aa0a4f0f17d147a0b6d2930436ec3b5508084c8 100644 (file)
@@ -39,7 +39,7 @@ local function new_session(conn)
                        if t then
                                local ret, err = w(conn, t);
                                if not ret then
-                                       session.log("error", "Error writing to connection: %s", tostring(err));
+                                       session.log("debug", "Error writing to connection: %s", tostring(err));
                                        return false, err;
                                end
                        end