# Empty Error Handling - ID: go-empty-error-handling - Severity: LOW - CWE: CWE-391 (CWE-391) - Languages: Go ## Description Error check block is empty, silently swallowing errors. ## Remediation Log or return errors instead of ignoring them silently. ```go if err != nil { log.Printf("operation failed: %v", err) return err } ``` Learn more: https://shoulder.dev/learn/go/cwe-391/empty-error-handling ## Related Rules - **Unhandled Promise Rejection** [HIGH]: - **Empty Exception Handler** [MEDIUM]: