From 1e4d4247bf7697cb8bff72d8250a17a9f98199fb Mon Sep 17 00:00:00 2001 From: yczpf2019 Date: Sat, 24 Jan 2026 18:44:15 +0800 Subject: [PATCH] chore: add debug logging for shell commands --- src/common/shell-micropython.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/shell-micropython.js b/src/common/shell-micropython.js index bf1c8ea7..87af8579 100755 --- a/src/common/shell-micropython.js +++ b/src/common/shell-micropython.js @@ -16,6 +16,7 @@ export default class ShellMicroPython extends Shell { com: config.port }; const command = MString.tpl(config.command, info); + console.log('DEBUG CMD BURN:', command); return this.execUntilClosed(command); } @@ -26,6 +27,7 @@ export default class ShellMicroPython extends Shell { com: config.port }; const command = MString.tpl(config.command, info); + console.log('DEBUG CMD UPLOAD:', command); return this.execUntilClosed(command); } } \ No newline at end of file