in vscode-extension/src/logging.ts [168:177]
private openLogFolder() {
if (this.logSessionPath) {
// Open the folder in VS Code since there isn't an easy way to
// open the folder in the platform's file browser
vscode.commands.executeCommand(
"vscode.openFolder",
vscode.Uri.file(this.logSessionPath),
true);
}
}