mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +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())
 | 
						|
}
 |