11 lines
138 B
Go
11 lines
138 B
Go
package logx
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func Info(template string, args ...interface{}) {
|
|
_, _ = fmt.Fprintf(os.Stderr, template, args)
|
|
}
|