remove search model building logs (#183453)

* remove search model building logs

* remove unused import
This commit is contained in:
Andrea Mah 2023-05-25 11:07:04 -07:00 committed by GitHub
parent 898311b454
commit cc77912561
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,6 @@ import { IConfigurationService } from 'vs/platform/configuration/common/configur
import { IFileService, IFileStatWithPartialMetadata } from 'vs/platform/files/common/files';
import { createDecorator, IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { ILabelService } from 'vs/platform/label/common/label';
import { ILogService, LogLevel } from 'vs/platform/log/common/log';
import { IProgress, IProgressStep } from 'vs/platform/progress/common/progress';
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
import { minimapFindMatch, overviewRulerFindMatchForeground } from 'vs/platform/theme/common/colorRegistry';
@ -1276,8 +1275,7 @@ export class FolderMatchWorkspaceRoot extends FolderMatchWithResource {
@IReplaceService replaceService: IReplaceService,
@IInstantiationService instantiationService: IInstantiationService,
@ILabelService labelService: ILabelService,
@IUriIdentityService uriIdentityService: IUriIdentityService,
@ILogService private readonly _logService: ILogService
@IUriIdentityService uriIdentityService: IUriIdentityService
) {
super(_resource, _id, _index, _query, _parent, _searchModel, null, replaceService, instantiationService, labelService, uriIdentityService);
}
@ -1317,29 +1315,15 @@ export class FolderMatchWorkspaceRoot extends FolderMatchWithResource {
const normalizedResource = this.uriIdentityService.extUri.normalizePath(this.resource);
let uri = this.normalizedUriParent(rawFileMatch.resource);
const debug: string[] = ['[search model building]'];
if (this._logService.getLevel() === LogLevel.Trace) {
debug.push(`Starting with normalized resource ${normalizedResource}`);
}
while (!this.uriEquals(normalizedResource, uri)) {
fileMatchParentParts.unshift(uri);
const prevUri = uri;
uri = this.normalizedUriParent(uri);
if (this._logService.getLevel() === LogLevel.Trace) {
debug.push(`current uri parent ${uri} comparing with ${prevUri}`);
}
if (this.uriEquals(prevUri, uri)) {
this._logService.trace(debug.join('\n\n'));
throw Error(`${rawFileMatch.resource} is not correctly configured as a child of its ${normalizedResource}`);
throw Error(`${rawFileMatch.resource} is not correctly configured as a child of ${normalizedResource}`);
}
}
if (this._logService.getLevel() === LogLevel.Trace) {
this._logService.trace(debug.join('\n\n'));
}
const root = this.closestRoot ?? this;
let parent: FolderMatch = this;
for (let i = 0; i < fileMatchParentParts.length; i++) {