diff --git a/src/commands.ts b/src/commands.ts index 5b2ab15..bdd386a 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -20,9 +20,9 @@ export async function startDebugging(name: string, $type: DbosMethodType) { if (!wfID) { return; } - const proxy_port = config.proxyPort ?? 2345; - const proxyURL = `http://localhost:${proxy_port}`; + logger.info(`Starting debugging for ${name} workflow ${wfID}`); + const proxyURL = `http://localhost:${config.proxyPort ?? 2345}`; await vscode.debug.startDebugging( vscode.workspace.getWorkspaceFolder(vscode.window.activeTextEditor!.document.uri), { diff --git a/src/extension.ts b/src/extension.ts index 70519e6..bde6a37 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -14,7 +14,7 @@ export let debugProxy: DebugProxy; export async function activate(context: vscode.ExtensionContext) { - const transport = new LogOutputChannelTransport('DBOS Time Travel Debugger'); + const transport = new LogOutputChannelTransport('DBOS'); logger = createLogger(transport); context.subscriptions.push({ dispose() { logger.close(); transport.close(); } });