aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChienyuan <chienyuanhuang@google.com>2019-08-28 01:20:23 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-08-28 01:20:23 -0700
commitd501dc539569fe974c3e5231655c10e90a5dcc38 (patch)
tree197bed28274c85fcd5bb42a760d5497d045302ee
parentb73475c228abe7b51ec4ce8687b579af8525207d (diff)
parent8c86496ffd7b051cab81cdce9faed5dd862bc3f4 (diff)
downloadbt-d501dc539569fe974c3e5231655c10e90a5dcc38.tar.gz
Remove log with uint64_t
am: 8c86496ffd Change-Id: I655ec9b2d740568728ec9298a6eb6d1ada654615
-rw-r--r--gd/hci/facade.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/gd/hci/facade.cc b/gd/hci/facade.cc
index 57c62923d..b817ea667 100644
--- a/gd/hci/facade.cc
+++ b/gd/hci/facade.cc
@@ -133,11 +133,7 @@ class AclManagerFacadeService : public AclManagerFacade::Service, public ::bluet
LOG_DEBUG("hci version : %x", (uint16_t)local_version_information.hci_version_);
LOG_DEBUG("lmp version : %x", (uint16_t)local_version_information.lmp_version_);
LOG_DEBUG("supported commands : %x", controller_->GetControllerLocalSupportedCommands()[0]);
- LOG_DEBUG("supported features : %lx", controller_->GetControllerLocalSupportedFeatures());
LOG_DEBUG("local extended features :");
- for (int i = 0; i <= controller_->GetControllerLocalExtendedFeaturesMaxPageNumber() + 1; i++) {
- LOG_DEBUG("page %d, %lx", i, controller_->GetControllerLocalExtendedFeatures(i));
- }
controller_->SetEventMask(0x00001FFFFFFFFFFF);
controller_->SetEventFilterInquiryResultAllDevices();
@@ -159,8 +155,6 @@ class AclManagerFacadeService : public AclManagerFacade::Service, public ::bluet
::google::protobuf::Empty* response) {
LOG_DEBUG("le data packet length : %d", controller_->GetControllerLeBufferSize().le_data_packet_length_);
LOG_DEBUG("total num le packets : %d", controller_->GetControllerLeBufferSize().total_num_le_packets_);
- LOG_DEBUG("le local supported features : %lx", controller_->GetControllerLeLocalSupportedFeatures());
- LOG_DEBUG("le supported states : %lx", controller_->GetControllerLeSupportedStates());
LOG_DEBUG("le supported max tx octets : %d",
controller_->GetControllerLeMaximumDataLength().supported_max_tx_octets_);
LOG_DEBUG("le supported max tx times : %d", controller_->GetControllerLeMaximumDataLength().supported_max_tx_time_);