Commit 38334b1
committed
fix: downgrade console.error to console.debug in DocumentHistoryTracker.push()
When onDidChangeVisibleTextEditors fires, deleteChain() calls push() on the
DocumentHistoryTracker for the previous request filepath. Because
onDidOpenTextDocument is currently disabled (pending PR continuedev#8364 merge),
documents are never pre-added via addDocument(), so push() always takes the
fallback path and logs a console.error on every editor switch.
The fallback in push() already handles this gracefully by calling
addDocument(), making the error log misleading noise. Downgrade it to
console.debug so it remains accessible for debugging without polluting the
Extension Host output.
Fixes continuedev#119191 parent a1ead04 commit 38334b1
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
| |||
0 commit comments