Skip to content

Commit 78307c2

Browse files
committed
Removed debug messages
1 parent 5f7dd26 commit 78307c2

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

source/FAST/Streamers/Streamer.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,12 @@ void Streamer::stop() {
4848
}
4949
}
5050
}
51-
reportInfo() << "frameadd.." << reportEnd();
5251
frameAdded(); // Unblock in execute, if needed
53-
reportInfo() << "done" << reportEnd();
5452
// Join thread and reset
5553
if(std::this_thread::get_id() != m_thread->get_id()) {
5654
// join can't be called from the streaming thread
57-
reportInfo() << "join" << reportEnd();
5855
m_thread->join();
59-
reportInfo() << "reset" << reportEnd();
6056
m_thread.reset(); // This will destroy existing thread object, and will crash program if it happens inside thread
61-
reportInfo() << "reset done" << reportEnd();
6257
} else {
6358
m_thread->detach(); // Test
6459
}

0 commit comments

Comments
 (0)