IPC: External polling loop with a Client
[platform/core/security/vasum.git] / common / ipc / internals / acceptor.cpp
index 1eab1c2..627e1fe 100644 (file)
@@ -67,12 +67,13 @@ void Acceptor::start()
 void Acceptor::stop()
 {
     LOGT("Stopping Acceptor");
+
     if (mThread.joinable()) {
-        LOGT("Event::FINISH -> Acceptor");
         mEventQueue.send(Event::FINISH);
         LOGT("Waiting for Acceptor to finish");
         mThread.join();
     }
+
     LOGT("Stopped Acceptor");
 }