Skip to content

Commit

Permalink
move some logs from DEBUG to VERBOSE
Browse files Browse the repository at this point in the history
  • Loading branch information
yoziru committed Jul 23, 2024
1 parent 08da714 commit 8ef958d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/tesla_ble_vehicle/tesla_ble_vehicle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ namespace esphome
ESP_LOGE(TAG, "write char failed, error status = %x", param->write.status);
break;
}
ESP_LOGD(TAG, "Write char success");
ESP_LOGV(TAG, "Write char success");
break;

case ESP_GATTC_NOTIFY_EVT:
Expand All @@ -831,7 +831,7 @@ namespace esphome
ESP_LOGW(TAG, "Received notify from unknown connection");
break;
}
ESP_LOGD(TAG, "%d: - RAM left %ld", __LINE__, esp_get_free_heap_size());
ESP_LOGV(TAG, "%d: - RAM left %ld", __LINE__, esp_get_free_heap_size());
ESP_LOGD(TAG, "BLE RX: %s", format_hex(param->notify.value, param->notify.value_len).c_str());

UniversalMessage_RoutableMessage message = UniversalMessage_RoutableMessage_init_default;
Expand Down

0 comments on commit 8ef958d

Please sign in to comment.