(s string)
| 53 | } |
| 54 | |
| 55 | func SysError(s string) { |
| 56 | t := time.Now() |
| 57 | _, _ = fmt.Fprintf(gin.DefaultErrorWriter, "[SYS] %v | %s \n", t.Format("2006/01/02 - 15:04:05"), s) |
| 58 | } |
| 59 | |
| 60 | func LogInfo(ctx context.Context, msg string) { |
| 61 | logHelper(ctx, loggerINFO, msg) |
no outgoing calls
no test coverage detected