Skip to content

Commit e821ef3

Browse files
committed
Add logging for repository workspaces
Part of microsoft/vscode#275356
1 parent 341bcf7 commit e821ef3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/uriHandler.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ export class UriHandler implements vscode.UriHandler {
176176
return;
177177
}
178178
if (workspaces && workspaces.length) {
179+
Logger.appendLine(`Found workspaces for ${remoteUri.toString()}: ${workspaces.map(w => w.toString()).join(', ')}`, UriHandler.ID);
179180
progress.report({ message: vscode.l10n.t('Opening workspace') });
180181
await this._savePendingCheckoutAndOpenFolder(params, workspaces[0]);
181182
} else {

0 commit comments

Comments
 (0)