Skip to content
Snippets Groups Projects
Commit c76f10ad authored by andreykproductengine's avatar andreykproductengine
Browse files

MAINT-8686 Better http termination logging

parent 8348e50c
No related branches found
No related tags found
No related merge requests found
...@@ -95,10 +95,12 @@ HttpService::~HttpService() ...@@ -95,10 +95,12 @@ HttpService::~HttpService()
if (! mThread->timedJoin(250)) if (! mThread->timedJoin(250))
{ {
// Failed to join, expect problems ahead so do a hard termination. // Failed to join, expect problems ahead so do a hard termination.
mThread->cancel(); LL_WARNS(LOG_CORE) << "Destroying HttpService with running thread. Expect problems." << LL_NEWLINE
<< "State: " << S32(sState)
<< " Last policy: " << U32(mLastPolicy)
<< LL_ENDL;
LL_WARNS(LOG_CORE) << "Destroying HttpService with running thread. Expect problems." mThread->cancel();
<< LL_ENDL;
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment