diff --git a/common/eq_stream_factory.cpp b/common/eq_stream_factory.cpp index d58995623..429f258f6 100644 --- a/common/eq_stream_factory.cpp +++ b/common/eq_stream_factory.cpp @@ -23,18 +23,10 @@ ThreadReturnType EQStreamFactoryReaderLoop(void *eqfs) { -EQStreamFactory *fs=(EQStreamFactory *)eqfs; - -#ifndef WIN32 - Log.Out(Logs::Detail, Logs::None, "Starting EQStreamFactoryReaderLoop with thread ID %d", pthread_self()); -#endif + EQStreamFactory *fs=(EQStreamFactory *)eqfs; fs->ReaderLoop(); -#ifndef WIN32 - Log.Out(Logs::Detail, Logs::None, "Ending EQStreamFactoryReaderLoop with thread ID %d", pthread_self()); -#endif - THREAD_RETURN(nullptr); } @@ -42,16 +34,8 @@ ThreadReturnType EQStreamFactoryWriterLoop(void *eqfs) { EQStreamFactory *fs=(EQStreamFactory *)eqfs; -#ifndef WIN32 - Log.Out(Logs::Detail, Logs::None, "Starting EQStreamFactoryWriterLoop with thread ID %d", pthread_self()); -#endif - fs->WriterLoop(); -#ifndef WIN32 - Log.Out(Logs::Detail, Logs::None, "Ending EQStreamFactoryWriterLoop with thread ID %d", pthread_self()); -#endif - THREAD_RETURN(nullptr); }