1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-02 19:44:13 +00:00
Beego/vendor/github.com/siddontang/go/log/doc.go
2018-11-09 12:37:28 +08:00

22 lines
583 B
Go

// log package supplies more advanced features than go orign log package.
//
// It supports log different level: trace, debug, info, warn, error, fatal.
//
// It also supports different log handlers which you can log to stdout, file, socket, etc...
//
// Use
//
// import "github.com/siddontang/go/log"
//
// //log with different level
// log.Info("hello world")
// log.Error("hello world")
//
// //create a logger with specified handler
// h := NewStreamHandler(os.Stdout)
// l := log.NewDefault(h)
// l.Info("hello world")
// l.Infof("%s %d", "hello", 123)
//
package log