package elastic import ( "fmt" ) type tracelog struct{} // 实现输出 func (tracelog) Printf(format string, v ...interface{}) { fmt.Printf(format, v...) }