NewLogger set to display line number

This commit is contained in:
slene 2014-03-30 10:05:39 +08:00
parent 107a1eadac
commit 3f65760739
1 changed files with 3 additions and 2 deletions

View File

@ -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)
}