diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-07-05 17:40:12 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-07-05 17:40:12 +0100 |
commit | f2b3328bc1fb3dce23a783e2cd8932d0e1fba864 (patch) | |
tree | d14b44262cee1dc74af32fbaa4658385b9552152 /util/logger.lua | |
parent | 7a97efab5c5bf02bdba1840027de6e434b475ebb (diff) | |
parent | 2429531070ba2f2273a77c3512abbca5acda92ff (diff) | |
download | prosody-f2b3328bc1fb3dce23a783e2cd8932d0e1fba864.tar.gz prosody-f2b3328bc1fb3dce23a783e2cd8932d0e1fba864.zip |
Merge 0.9->trunk
Diffstat (limited to 'util/logger.lua')
-rw-r--r-- | util/logger.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/util/logger.lua b/util/logger.lua index 4fadb4b9..26206d4d 100644 --- a/util/logger.lua +++ b/util/logger.lua @@ -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, ...); |