Add default behave of logger

This commit is contained in:
Unknown 2014-03-23 12:32:16 -04:00
parent f8cfb81fb0
commit 003298ef1d
1 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,11 @@ import (
var logger *logs.BeeLogger
func init() {
logger = logs.NewLogger(10000)
logger.SetLogger("console", `{"level": 0}`)
}
func NewLogger(bufLen int64, mode, config string) {
logger = logs.NewLogger(bufLen)
logger.SetLogger(mode, config)