delete default console & add bench test

This commit is contained in:
astaxie
2013-08-28 15:48:43 +08:00
parent b96f7e2ef2
commit 2424618163
5 changed files with 25 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ func NewLogger(channellen int64) *BeeLogger {
bl := new(BeeLogger)
bl.msg = make(chan *logMsg, channellen)
bl.outputs = make(map[string]LoggerInterface)
bl.SetLogger("console", "") // default output to console
//bl.SetLogger("console", "") // default output to console
go bl.StartLogger()
return bl
}