Remove unnecessary log statements.

PiperOrigin-RevId: 800233284
This commit is contained in:
Francis Tsui
2025-08-27 17:34:58 -07:00
committed by Copybara-Service
parent fe81c82e88
commit b255a7c63f
4 changed files with 32 additions and 33 deletions
+2 -1
View File
@@ -2795,7 +2795,8 @@ void NearbySharingServiceImpl::OnFrameRead(
break;
default:
LOG(ERROR) << __func__ << ": Discarding unknown frame of type";
LOG(ERROR) << __func__ << ": Discarding unknown frame of type: "
<< static_cast<int>(frame->type());
break;
}
+1 -1
View File
@@ -91,7 +91,7 @@ bool TransferManager::StartTransfer() {
absl::MutexLock lock(&mutex_);
if (!is_waiting_for_high_quality_medium_) {
LOG(WARNING) << "No need to wait for high quality medium.";
VLOG(1) << "No need to wait for high quality medium.";
return false;
}