Add log message for successful DevChat installation check

- Added a log message in commandsBase.ts to confirm successful DevChat installation check.
This commit is contained in:
bobo.yang 2023-07-12 17:37:00 +08:00
parent 116defdec7
commit b057d93593

View File

@ -32,6 +32,7 @@ export function checkDevChatDependency(pythonCommand: string, showError: boolean
try {
// Check if DevChat is installed
runCommand(`"${devChat}" --help`);
logger.channel()?.info("devchat has installed.")
return true;
} catch(error) {
const error_status = `Failed to check DevChat dependency due to error: ${error}`;