From 6e5f3d1140e64406444b1888ed3ccbc927ec32db Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 22 Oct 2020 14:40:07 +0000 Subject: [PATCH] chore - remove decoration service logging, fyi @bpasero --- .../services/decorations/browser/decorationsService.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/vs/workbench/services/decorations/browser/decorationsService.ts b/src/vs/workbench/services/decorations/browser/decorationsService.ts index 301187f332b..fda885169d6 100644 --- a/src/vs/workbench/services/decorations/browser/decorationsService.ts +++ b/src/vs/workbench/services/decorations/browser/decorationsService.ts @@ -17,7 +17,6 @@ import { localize } from 'vs/nls'; import { isPromiseCanceledError } from 'vs/base/common/errors'; import { CancellationTokenSource } from 'vs/base/common/cancellation'; import { registerSingleton } from 'vs/platform/instantiation/common/extensions'; -import { ILogService } from 'vs/platform/log/common/log'; import { hash } from 'vs/base/common/hash'; class DecorationRule { @@ -327,7 +326,6 @@ export class DecorationsService implements IDecorationsService { constructor( @IThemeService themeService: IThemeService, - @ILogService private readonly _logService: ILogService, ) { this._decorationStyles = new DecorationStyles(themeService); } @@ -369,7 +367,6 @@ export class DecorationsService implements IDecorationsService { if (!isChild || deco.bubble) { data.push(deco); containsChildren = isChild || containsChildren; - this._logService.trace('DecorationsService#getDecoration#getOrRetrieve', wrapper.provider.label, deco, isChild, uri); } }); } -- GitLab