adbbus: Don't abort.

This commit is contained in:
joevt 2024-03-15 00:53:58 -07:00 committed by dingusdev
parent 72b257e5d1
commit 5de1c23aba
1 changed files with 1 additions and 1 deletions

View File

@ -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;