You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
204 B
Go
18 lines
204 B
Go
5 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/fangdingjun/go-log"
|
||
|
)
|
||
|
|
||
|
func infoLog(msg string) {
|
||
|
log.Println(msg)
|
||
|
}
|
||
|
|
||
|
func errorLog(msg string) {
|
||
|
log.Errorln(msg)
|
||
|
}
|
||
|
|
||
|
func debugLog(msg string) {
|
||
|
log.Debugln(msg)
|
||
|
}
|