Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9e99235 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Controller: Debug message for unuspported opcodes"

parents 0e93d5c1 f502ce53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -514,7 +514,7 @@ struct Controller::impl {
    uint16_t bit_index = index % 10;                                           \
    bool supported = local_supported_commands_[byte_index] & (1 << bit_index); \
    if (!supported) {                                                          \
      LOG_WARN("unsupported command opcode: 0x%04x", (uint16_t)OpCode::name);  \
      LOG_DEBUG("unsupported command opcode: 0x%04x", (uint16_t)OpCode::name); \
    }                                                                          \
    return supported;                                                          \
  }