only: nicer logging

This commit is contained in:
rusefillc 2024-03-31 07:42:42 -04:00
parent 0234ff6a98
commit b0154825a6
1 changed files with 3 additions and 1 deletions

View File

@ -223,7 +223,9 @@ public class ProgramSelector {
OpenbltJni.OpenbltCallbacks cb = makeOpenbltCallbacks(callbacks);
try {
OpenbltJni.flashSerial("../rusefi_update.srec", port, cb);
String fileName = "../rusefi_update.srec";
callbacks.log("flashSerial " + fileName);
OpenbltJni.flashSerial(fileName, port, cb);
callbacks.log("Update completed successfully!");
callbacks.done();