mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-15 07:28:05 +00:00
Remove unnecessary log statement in JSON client (#291645)
[json] remove unnecessary og statement
This commit is contained in:
committed by
GitHub
parent
00b43c826d
commit
46308bc433
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user