init.lua

changeset 328
55e3fd7b9731
parent 327
963d156a4b36
child 330
44d2bd1cee46
equal deleted inserted replaced
327:963d156a4b36 328:55e3fd7b9731
148 verse.log("error", "Attempt to close disconnected connection - possibly a bug"); 148 verse.log("error", "Attempt to close disconnected connection - possibly a bug");
149 return; 149 return;
150 end 150 end
151 local on_disconnect = self.conn.disconnect(); 151 local on_disconnect = self.conn.disconnect();
152 self.conn:close(); 152 self.conn:close();
153 on_disconnect(self.conn, reason); 153 on_disconnect(self, reason);
154 end 154 end
155 155
156 -- Logging functions 156 -- Logging functions
157 function stream:debug(...) 157 function stream:debug(...)
158 return self.logger("debug", ...); 158 return self.logger("debug", ...);

mercurial