Commit e0caa13
authored
🤖 Reduce git status console spam for output overflow (#276)
## Problem
GitStatusStore logs every OUTPUT TRUNCATED and OUTPUT OVERFLOW error
with `console.debug`, creating console spam in large repositories. These
errors are common and handled gracefully by the system.
## Solution
Filter out these specific error messages from logging. The git status
script already has proper overflow handling via `overflow_policy`, so
these messages provide no actionable information.
## Changes
- Skip logging for errors containing "OUTPUT TRUNCATED" or "OUTPUT
OVERFLOW"
- Other git status errors still logged normally for debugging
- No behavior change, just reduces log noise
## Testing
- ✅ `make static-check` passes
- Same error handling, just quieter logs1 parent b6b2de3 commit e0caa13
1 file changed
+7
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
219 | 219 | | |
220 | 220 | | |
221 | 221 | | |
222 | | - | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
223 | 229 | | |
224 | 230 | | |
225 | 231 | | |
| |||
0 commit comments