Skip to content

Commit d9a8f75

Browse files
BernardMetzlerpspoerri
authored andcommitted
debug
1 parent 23d9aa8 commit d9a8f75

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/libgeds/FileTransferService.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ absl::StatusOr<size_t> FileTransferService::readBytes(const std::string &bucket,
155155
}
156156
auto status = fut.get();
157157
if (status.ok()) {
158+
LOG_DEBUG("TCP readBytes OK, bytes: ", length);
158159
return *status;
159160
}
160161
// Close the FileTransferService on error.

src/libgeds/TcpTransport.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,6 @@ void TcpTransport::tcpRxThread(unsigned int id) {
673673
}
674674
auto it = tcpPeers.get(epId);
675675
if (it.has_value()) {
676-
LOG_DEBUG("Found peer for %d: ", sock);
677676
tcpPeer = *it;
678677
} else {
679678
LOG_ERROR("No peer for: ", sock);

0 commit comments

Comments
 (0)