Default severity: warning
Reports odd key/value tails, non-string loose keys, and calls that mix
slog.Attr values with loose key/value pairs.
Bad
slog.Info("request", 42, method, "status")Good
slog.Info("request", "method", method, "status", status)