From 3f657607393e35c96a3519ac589778cb021b8b95 Mon Sep 17 00:00:00 2001
From: slene <vslene@gmail.com>
Date: Sun, 30 Mar 2014 10:05:39 +0800
Subject: [PATCH] NewLogger set to display line number

---
 modules/log/log.go | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/modules/log/log.go b/modules/log/log.go
index e1bab8ae4a..f00675481d 100644
--- a/modules/log/log.go
+++ b/modules/log/log.go
@@ -15,13 +15,14 @@ var (
 )
 
 func init() {
-	logger = logs.NewLogger(10000)
-	logger.SetLogger("console", `{"level": 0}`)
+	NewLogger(10000, "console", `{"level": 0}`)
 }
 
 func NewLogger(bufLen int64, mode, config string) {
 	Mode, Config = mode, config
 	logger = logs.NewLogger(bufLen)
+	logger.EnableFuncCallDepth(true)
+	logger.SetLogFuncCallDepth(4)
 	logger.SetLogger(mode, config)
 }