(ctx context.Context, msg string)
| 66 | } |
| 67 | |
| 68 | func LogError(ctx context.Context, msg string) { |
| 69 | logHelper(ctx, loggerError, msg) |
| 70 | } |
| 71 | |
| 72 | func logHelper(ctx context.Context, level string, msg string) { |
| 73 | writer := gin.DefaultErrorWriter |
no test coverage detected