From 33541f24748299ce9d99c0e0bfbb027c9f4beae0 Mon Sep 17 00:00:00 2001 From: gjsjohnmurray Date: Wed, 28 Feb 2024 13:49:10 +0000 Subject: [PATCH] Correct output channel name --- src/logger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logger.ts b/src/logger.ts index 9a94f35..d7b4df4 100644 --- a/src/logger.ts +++ b/src/logger.ts @@ -51,7 +51,7 @@ class VSCodeLogger implements ILogger { private _print(...args: any[]) { if (!this._outputChannel) { - this._outputChannel = vscode.window.createOutputChannel("InterSystems Server Manager"); + this._outputChannel = vscode.window.createOutputChannel("InterSystems Testing Manager"); } const msg = args