LibThreading: Remove extra spammy log message upon starting a thread

This commit is contained in:
Timothy Flynn 2024-05-20 13:03:19 -04:00 committed by Andrew Kaster
commit fb9c8324d9
Notes: sideshowbarker 2024-07-17 07:14:09 +09:00

View file

@ -108,7 +108,6 @@ void Thread::start()
VERIFY(rc == 0); VERIFY(rc == 0);
} }
#endif #endif
dbgln("Started {}", *this);
} }
void Thread::detach() void Thread::detach()