Remove logging on successful thread creation

This commit is contained in:
Michael Vandeberg 2016-10-21 14:06:22 -04:00
parent 9ce9270f82
commit 013fbfb6a7

View file

@ -92,7 +92,7 @@ namespace fc {
p->wait();
my->boost_thread = t;
my->name = name;
wlog("name:${n} tid:${tid}", ("n", name)("tid", (uintptr_t)my->boost_thread->native_handle()) );
//wlog("name:${n} tid:${tid}", ("n", name)("tid", (uintptr_t)my->boost_thread->native_handle()) );
}
thread::thread( thread_d* ) {
my = new thread_d(*this);