# HG changeset patch # User Matthew Wild # Date 1234799063 0 # Node ID 655293df3d7e096a2b1cd92f84fc66ccaf43942e # Parent 9bc1544c99b7ffe61e5596ec9e73128d703c33ca# Parent 5fbbf34ef1c43b6507f5985a18e581093d651aa2 Merge waqas with waqas diff -r 9bc1544c99b7 -r 655293df3d7e util/logger.lua --- a/util/logger.lua Sun Feb 15 15:56:04 2009 +0000 +++ b/util/logger.lua Mon Feb 16 15:44:23 2009 +0000 @@ -33,16 +33,11 @@ function init(name) --name = nil; -- While this line is not commented, will automatically fill in file/line number info - sourcewidth = math_max(#name+2, sourcewidth); local namelen = #name; return function (level, message, ...) - if not name then - local inf = debug.getinfo(3, 'Snl'); - level = level .. ","..tostring(inf.short_src):match("[^/]*$")..":"..inf.currentline; - end - if outfunction then return outfunction(name, level, message, ...); end + sourcewidth = math_max(#name+2, sourcewidth); if ... then io_write(name, rep(" ", sourcewidth-namelen), getstring(logstyles[level], level), "\t", format(message, ...), "\n"); else