constructor()

in vscode-extension/src/logging.ts [41:56]


    constructor() {
        this.logChannel = vscode.window.createOutputChannel("Azure PowerShell Extension Logs");

        this.logBasePath = path.resolve(__dirname, "../../logs");
        utils.ensurePathExists(this.logBasePath);

        this.commands = [
            vscode.commands.registerCommand(
                "AzurePowerShell.ShowLogs",
                () => { this.showLogPanel(); }),

            vscode.commands.registerCommand(
                "AzurePowerShell.OpenLogFolder",
                () => { this.openLogFolder(); }),
        ];
    }