Add missing call for the base class' Stop() method

refs #11684
This commit is contained in:
Gunnar Beutner 2016-10-24 08:40:12 +02:00
parent 5fdc874377
commit d70d7797c8
1 changed files with 2 additions and 0 deletions

View File

@ -166,6 +166,8 @@ void ApiListener::Start(bool runtimeCreated)
void ApiListener::Stop(bool runtimeDeleted)
{
ObjectImpl<ApiListener>::Stop(runtimeDeleted);
boost::mutex::scoped_lock lock(m_LogLock);
CloseLogFile();
}