Skip to content
Snippets Groups Projects
Commit f7112810 authored by Eric Cano's avatar Eric Cano
Browse files

Removed debug information in Thread::start().

parent 4f4b80f7
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,6 @@ void Thread::start()
cta::exception::Errnum::throwOnReturnedErrno(
pthread_create(&m_thread, NULL, pthread_runner, this),
"Error from pthread_create in cta::threading::Thread::start()");
std::cout << "Started thread:" << m_thread << " (0x" << std::hex << m_thread << std::dec << ")" << std::endl;
m_started = true;
}
//------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment