Pitcag
Repositories
Issues
Comments
Results
1
issues of
Pitcag
import "github.com/siddontang/go-log/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")