Skip to content

Commit 3ebe190

Browse files
committed
feat: enhance CLI startup logging with package info
- Display package name and version on CLI startup - Change completion message to be more descriptive - Improves operational visibility and debugging
1 parent 7292592 commit 3ebe190

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ async function main() {
171171

172172
// CLI mode - if any arguments are provided
173173
if (process.argv.length > 2) {
174-
mainLogger.info('Starting in CLI mode');
174+
mainLogger.info(`Starting ${PACKAGE_NAME} v${VERSION} in CLI mode`);
175175
await runCli(process.argv.slice(2));
176-
mainLogger.info('CLI execution completed');
176+
mainLogger.info('CLI execution completed successfully');
177177
return;
178178
}
179179

0 commit comments

Comments
 (0)