From 8a7eb3130c471d6dd6cd9f151daf43eac084c760 Mon Sep 17 00:00:00 2001 From: Nicolas Pope <nwpope@utu.fi> Date: Tue, 11 Jun 2019 14:44:45 +0300 Subject: [PATCH] More fix attempts --- components/rgbd-sources/src/streamer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/rgbd-sources/src/streamer.cpp b/components/rgbd-sources/src/streamer.cpp index c79b2f39a..bc19571c3 100644 --- a/components/rgbd-sources/src/streamer.cpp +++ b/components/rgbd-sources/src/streamer.cpp @@ -109,7 +109,7 @@ void Streamer::_addClient(const string &source, int N, int rate, const ftl::UUID if (rate < 0 || rate >= 10) return; if (N < 0 || N > ftl::rgbd::kMaxFrames) return; - LOG(INFO) << "Adding Stream Peer: " << peer.to_string(); + //LOG(INFO) << "Adding Stream Peer: " << peer.to_string(); StreamClient c; c.peerid = peer; @@ -260,7 +260,7 @@ void Streamer::_schedule() { } (*i).txcount++; if ((*i).txcount >= (*i).txmax) { - DLOG(2) << "Remove client"; + LOG(INFO) << "Remove client"; unique_lock<shared_mutex> lk(src->mutex); i = src->clients[0].erase(i); } else { -- GitLab