This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/utils/errors.go
T

12 lines
187 B
Go

package utils
import (
"github.com/iwind/TeaGo/logs"
)
// 打印错误
func PrintError(err error) {
// TODO 记录调用的文件名、行数
logs.Println("[ERROR]" + err.Error())
}