Remove unnecessary log statement in JSON client (#291645)

[json] remove unnecessary og statement
This commit is contained in:
Martin Aeschlimann
2026-01-29 17:51:13 +01:00
committed by GitHub
parent 00b43c826d
commit 46308bc433

View File

@@ -650,8 +650,6 @@ async function startClientWithParticipants(_context: ExtensionContext, languageP
async function getSchemaAssociations(forceRefresh: boolean): Promise<ISchemaAssociation[]> {
if (!schemaAssociationsCache || forceRefresh) {
schemaAssociationsCache = computeSchemaAssociations();
runtime.logOutputChannel.info(`Computed schema associations: ${(await schemaAssociationsCache).map(a => `${a.uri} -> [${a.fileMatch.join(', ')}]`).join('\n')}`);
}
return schemaAssociationsCache;
}