elasticsearch.go 147 B

1234567891011
  1. package services
  2. import (
  3. "fmt"
  4. )
  5. type tracelog struct{}
  6. func (tracelog) Printf(format string, v ...interface{}) {
  7. fmt.Printf(format, v...)
  8. }