add log for update slash commands

This commit is contained in:
bobo.yang 2024-11-05 11:27:30 +08:00
parent a3b0078a1c
commit a998b11f1e

View File

@ -1,7 +1,9 @@
import { logger } from '../../util/logger';
import * as vscode from 'vscode'; import * as vscode from 'vscode';
export async function updateSlashCommands() { export async function updateSlashCommands() {
logger.channel()?.debug('Updating slash commands...');
vscode.commands.executeCommand('DevChat.InstallCommands'); vscode.commands.executeCommand('DevChat.InstallCommands');
return true; return true;
} }