Remove more debugging code which was accidentally committed (don't trust hg)

This commit is contained in:
Matthew Wild 2009-04-10 10:38:04 +01:00
parent d95e52160f
commit e99f46bcda
2 changed files with 0 additions and 4 deletions

View file

@ -332,8 +332,6 @@ end
function destroy_session(session) function destroy_session(session)
(session.log or log)("info", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host)); (session.log or log)("info", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host));
log("debug", debug.traceback());
if session.direction == "outgoing" then if session.direction == "outgoing" then
hosts[session.from_host].s2sout[session.to_host] = nil; hosts[session.from_host].s2sout[session.to_host] = nil;
bounce_sendq(session); bounce_sendq(session);

View file

@ -49,8 +49,6 @@ function init(name)
if not log_this then return function () end end if not log_this then return function () end end
end end
if name == "modulemanager" or name:match("^c2s") or name == "datamanager" then return function () end; end
--name = nil; -- While this line is not commented, will automatically fill in file/line number info --name = nil; -- While this line is not commented, will automatically fill in file/line number info
local namelen = #name; local namelen = #name;
return function (level, message, ...) return function (level, message, ...)