From b164423d1fa554646a2984494a377aadb2259d25 Mon Sep 17 00:00:00 2001
From: Waqas Hussain <waqas20@gmail.com>
Date: Fri, 13 Feb 2009 22:10:29 +0500
Subject: Logging format improvement

---
 util/logger.lua | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

(limited to 'util')

diff --git a/util/logger.lua b/util/logger.lua
index d76e48f3..791e222b 100644
--- a/util/logger.lua
+++ b/util/logger.lua
@@ -33,16 +33,11 @@ local outfunction = nil;
 
 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
-- 
cgit v1.2.3