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

Commit a5a4bdbd authored by Kyunglyul Hyun's avatar Kyunglyul Hyun Committed by Automerger Merge Worker
Browse files

Merge "Changing log level for debugging" into main am: 355cf91c

parents 44cf6105 355cf91c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -330,9 +330,9 @@ static bool gatt_update_app_hold_link_status(tGATT_IF gatt_if, tGATT_TCB* p_tcb,
  if (is_add) {
    auto ret = holders.insert(gatt_if);
    if (ret.second) {
      log::debug("added gatt_if={}", gatt_if);
      log::info("added gatt_if={}", gatt_if);
    } else {
      log::debug("attempt to add already existing gatt_if={}", gatt_if);
      log::warn("attempt to add already existing gatt_if={}", gatt_if);
    }
    return true;
  }