1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-04 22:35:10 +00:00
Beego/vendor/github.com/siddontang/go/log/doc.go

22 lines
583 B
Go
Raw Normal View History

2018-11-09 04:37:28 +00:00
// 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