What problem does it solve? Inconsistent or missing application logging makes production incidents hard to triage, hides silent failures, and floods operators with mislabeled noise. This Skill reviews logging changes so every event has the right severity, a mandatory level label, and full error-path coverage. ## Core Features & Use Cases - Severity Validation: Checks each changed log statement against TRACE/DEBUG/INFO/WARN/ERROR/FATAL semantics and flags over-severe or under-severe usage. - Error Observability Checks: Traces changed error and fatal branches end-to-end to confirm no silent failure paths or swallowed exceptions. - Ignored-Error Enforcement: Requires a contextual WARN log whenever code intentionally ignores or downgrades an error. - Use Case: During a PR review that modifies retry logic and exception handlers, run this Skill to produce a report of blockers (silent error paths, missing labels) and concrete INFO-level milestone suggestions. ## Quick Start Review the logging changes in this pull request and report any severity, labeling, or error-coverage issues.