mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
12 lines
167 B
Go
12 lines
167 B
Go
|
|
package configutils
|
||
|
|
|
||
|
|
import "github.com/iwind/TeaGo/logs"
|
||
|
|
|
||
|
|
// 记录错误
|
||
|
|
func LogError(arg ...interface{}) {
|
||
|
|
if len(arg) == 0 {
|
||
|
|
return
|
||
|
|
}
|
||
|
|
logs.Println(arg...)
|
||
|
|
}
|