From 5de1c23aba92db6100dfcba0e49fe0b5b4b3ddd1 Mon Sep 17 00:00:00 2001 From: joevt Date: Fri, 15 Mar 2024 00:53:58 -0700 Subject: [PATCH] adbbus: Don't abort. --- devices/common/adb/adbbus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/common/adb/adbbus.cpp b/devices/common/adb/adbbus.cpp index be94dfa..225e6ee 100644 --- a/devices/common/adb/adbbus.cpp +++ b/devices/common/adb/adbbus.cpp @@ -96,7 +96,7 @@ uint8_t AdbBus::process_command(const uint8_t* in_data, int data_size) { if (!this->got_answer) return ADB_STAT_TIMEOUT; } else { - ABORT_F("%s: unsupported ADB command 0x%X", this->name.c_str(), cmd_byte); + LOG_F(ERROR, "%s: unsupported ADB command 0x%X", this->name.c_str(), cmd_byte); } return ADB_STAT_OK;