diff options
| -rw-r--r-- | adbconnection/adbconnection.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/adbconnection/adbconnection.cc b/adbconnection/adbconnection.cc index d8db923a28..bdcdcbe23f 100644 --- a/adbconnection/adbconnection.cc +++ b/adbconnection/adbconnection.cc @@ -312,12 +312,12 @@ void AdbConnectionState::SendDdmPacket(uint32_t id, // Get the write_event early to fail fast. ScopedEventFdLock lk(adb_write_event_fd_); if (adb_connection_socket_ == -1) { - LOG(WARNING) << "Not sending ddms data of type " - << StringPrintf("%c%c%c%c", - static_cast<char>(type >> 24), - static_cast<char>(type >> 16), - static_cast<char>(type >> 8), - static_cast<char>(type)) << " due to no connection!"; + VLOG(jdwp) << "Not sending ddms data of type " + << StringPrintf("%c%c%c%c", + static_cast<char>(type >> 24), + static_cast<char>(type >> 16), + static_cast<char>(type >> 8), + static_cast<char>(type)) << " due to no connection!"; // Adb is not connected. return; } @@ -523,7 +523,7 @@ bool AdbConnectionState::SetupAdbConnection() { /* now try to send our pid to the ADB daemon */ ret = TEMP_FAILURE_RETRY(send(sock, buff, sizeof(pid_t), 0)); if (ret == sizeof(pid_t)) { - LOG(INFO) << "PID " << getpid() << " send to adb"; + VLOG(jdwp) << "PID " << getpid() << " send to adb"; control_sock_ = std::move(sock); return true; } else { |