util.logger: Remove some redundant code

This commit is contained in:
Matthew Wild 2012-06-25 00:16:08 +01:00
parent ae0fdd43a4
commit 538620add4

View file

@ -23,8 +23,6 @@ function init(name)
local log_warn = make_logger(name, "warn");
local log_error = make_logger(name, "error");
--name = nil; -- While this line is not commented, will automatically fill in file/line number info
local namelen = #name;
return function (level, message, ...)
if level == "debug" then
return log_debug(message, ...);