(s string)
| 48 | } |
| 49 | |
| 50 | func SysLog(s string) { |
| 51 | t := time.Now() |
| 52 | _, _ = fmt.Fprintf(gin.DefaultWriter, "[SYS] %v | %s \n", t.Format("2006/01/02 - 15:04:05"), s) |
| 53 | } |
| 54 | |
| 55 | func SysError(s string) { |
| 56 | t := time.Now() |
no outgoing calls
no test coverage detected