package logx import ( "fmt" "os" ) func Info(template string, args ...interface{}) { _, _ = fmt.Fprintf(os.Stderr, template, args) }