diff --git a/src/vs/workbench/api/common/extHostDecorations.ts b/src/vs/workbench/api/common/extHostDecorations.ts index 70e264c24cd..b108fe4f6b1 100644 --- a/src/vs/workbench/api/common/extHostDecorations.ts +++ b/src/vs/workbench/api/common/extHostDecorations.ts @@ -55,6 +55,7 @@ export class ExtHostDecorations implements ExtHostDecorationsShape { // too many resources per event. pick one resource per folder, starting // with parent folders + this._logService.warn('[Decorations] CAPPING events from decorations provider', extensionId.value, array.length); const mapped = array.map(uri => ({ uri, rank: count(uri.path, '/') })); const groups = groupBy(mapped, (a, b) => a.rank - b.rank); let picked: URI[] = [];