diff --git a/components/net/cpp/src/peer.cpp b/components/net/cpp/src/peer.cpp
index aa5d6e958bb225c2cc45733ff707cf4b68cdc4bb..1bafff4ae3cd7a915006071aef70e54d44103a9d 100644
--- a/components/net/cpp/src/peer.cpp
+++ b/components/net/cpp/src/peer.cpp
@@ -429,7 +429,7 @@ void Peer::data() {
 	}
 	lk.unlock();
 
-	LOG(INFO) << "Received " << rc << " bytes";
+	//LOG(INFO) << "Received " << rc << " bytes";
 }
 
 bool Peer::_data() {
diff --git a/components/rgbd-sources/src/net.cpp b/components/rgbd-sources/src/net.cpp
index bca35479febd8a1113de97b13f02dc739332183f..64ecf1f3e9ddbbce8a3f9854a3d8ab498b1d79e3 100644
--- a/components/rgbd-sources/src/net.cpp
+++ b/components/rgbd-sources/src/net.cpp
@@ -83,7 +83,7 @@ void NetSource::_recvChunk(int frame, int chunk, bool delta, const vector<unsign
 
 	if (!active_) return;
 
-	LOG(INFO) << "Received chunk " << (int)chunk;
+	//LOG(INFO) << "Received chunk " << (int)chunk;
 
 	try {
 	// Decode in temporary buffers to prevent long locks
diff --git a/components/rgbd-sources/src/streamer.cpp b/components/rgbd-sources/src/streamer.cpp
index 8273a6fbd9b91888c7bcd7b7f651fdda3e5138b8..23e2cbc22afbe5d33bd710df4561c15f28f372cb 100644
--- a/components/rgbd-sources/src/streamer.cpp
+++ b/components/rgbd-sources/src/streamer.cpp
@@ -299,7 +299,7 @@ void Streamer::_schedule() {
 					vector<int> pngparams = {cv::IMWRITE_PNG_COMPRESSION, 1}; // Default is 1 for fast, 9 = small but slow.
 					cv::imencode(".png", d2, d_buf, pngparams);
 
-					LOG(INFO) << "Sending chunk " << chunk << " : size = " << chunkRGB.cols << "," << chunkRGB.rows;
+					//LOG(INFO) << "Sending chunk " << chunk << " : size = " << (d_buf.size()+rgb_buf.size()) / 1024 << "kb";
 
 					UNIQUE_LOCK(src->mutex,lk);
 					auto i = src->clients[0].begin();