Skip to content

Commit a3b0078

Browse files
committed
add startup log
1 parent 0d23a3c commit a3b0078

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/panel/statusBarView.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import * as vscode from 'vscode';
33
import { dependencyCheck } from './statusBarViewBase';
44
import { ProgressBar } from '../util/progressBar';
55
import { ASSISTANT_NAME_EN } from '../util/constants';
6+
import { logger } from '../util/logger';
67

78

89
export function createStatusBarItem(context: vscode.ExtensionContext): vscode.StatusBarItem {
@@ -50,7 +51,9 @@ export function createStatusBarItem(context: vscode.ExtensionContext): vscode.St
5051
// install devchat workflow commands
5152
if (!hasInstallCommands) {
5253
hasInstallCommands = true;
54+
logger.channel()?.debug("Starting local service...");
5355
await vscode.commands.executeCommand('DevChat.StartLocalService');
56+
logger.channel()?.debug("Installing commands...");
5457
await vscode.commands.executeCommand('DevChat.InstallCommands');
5558
// vscode.commands.executeCommand('DevChat.InstallCommandPython');
5659
}

0 commit comments

Comments
 (0)