From a998b11f1ee988f6031f13a9a04ee74d58c87a07 Mon Sep 17 00:00:00 2001 From: "bobo.yang" Date: Tue, 5 Nov 2024 11:27:30 +0800 Subject: [PATCH] add log for update slash commands --- src/ide_services/endpoints/updateSlashCommands.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ide_services/endpoints/updateSlashCommands.ts b/src/ide_services/endpoints/updateSlashCommands.ts index 3274635..172d7d5 100644 --- a/src/ide_services/endpoints/updateSlashCommands.ts +++ b/src/ide_services/endpoints/updateSlashCommands.ts @@ -1,7 +1,9 @@ +import { logger } from '../../util/logger'; import * as vscode from 'vscode'; export async function updateSlashCommands() { + logger.channel()?.debug('Updating slash commands...'); vscode.commands.executeCommand('DevChat.InstallCommands'); return true; } \ No newline at end of file