(msg string, args ...any)
| 60 | } |
| 61 | |
| 62 | func Fatal(msg string, args ...any) { |
| 63 | slog.Log(context.Background(), LevelCritical, msg, args...) |
| 64 | os.Exit(1) |
| 65 | } |
| 66 | |
| 67 | // Deprecated prints a deprecation warning message. |
| 68 | // If the IMGPROXY_FAIL_ON_DEPRECATION environment variable is truthy, |
no test coverage detected