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

Commit 355cf91c authored by Kyunglyul Hyun's avatar Kyunglyul Hyun Committed by Gerrit Code Review
Browse files

Merge "Changing log level for debugging" into main

parents 92f95470 da806bbb
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line 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) {
  if (is_add) {
    auto ret = holders.insert(gatt_if);
    auto ret = holders.insert(gatt_if);
    if (ret.second) {
    if (ret.second) {
      log::debug("added gatt_if={}", gatt_if);
      log::info("added gatt_if={}", gatt_if);
    } else {
    } 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;
    return true;
  }
  }