chore: add debug logging for shell commands

This commit is contained in:
yczpf2019
2026-01-24 18:44:15 +08:00
parent d776e24d2f
commit 1e4d4247bf

View File

@@ -16,6 +16,7 @@ export default class ShellMicroPython extends Shell {
com: config.port com: config.port
}; };
const command = MString.tpl(config.command, info); const command = MString.tpl(config.command, info);
console.log('DEBUG CMD BURN:', command);
return this.execUntilClosed(command); return this.execUntilClosed(command);
} }
@@ -26,6 +27,7 @@ export default class ShellMicroPython extends Shell {
com: config.port com: config.port
}; };
const command = MString.tpl(config.command, info); const command = MString.tpl(config.command, info);
console.log('DEBUG CMD UPLOAD:', command);
return this.execUntilClosed(command); return this.execUntilClosed(command);
} }
} }