mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:03:02 +08:00
12 lines
187 B
Go
12 lines
187 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/iwind/TeaGo/logs"
|
|
)
|
|
|
|
// 打印错误
|
|
func PrintError(err error) {
|
|
// TODO 记录调用的文件名、行数
|
|
logs.Println("[ERROR]" + err.Error())
|
|
}
|