diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-08-28 01:22:35 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-08-28 01:30:37 +0300 |
commit | a42045994dacbf687cb986d8f1a644f0399cffb5 (patch) | |
tree | 3ca0d77986c1874d4b79dbc3f05e7d929bc92733 /indra/llmessage/llcoproceduremanager.cpp | |
parent | 2f52a37e6a240a4a950779f2ef769a4fbd3baaf5 (diff) |
SL-13555 'Second Life quit unexpectedly' error message
Diffstat (limited to 'indra/llmessage/llcoproceduremanager.cpp')
-rw-r--r-- | indra/llmessage/llcoproceduremanager.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llmessage/llcoproceduremanager.cpp b/indra/llmessage/llcoproceduremanager.cpp index 2494c31613..26684a4d9e 100644 --- a/indra/llmessage/llcoproceduremanager.cpp +++ b/indra/llmessage/llcoproceduremanager.cpp @@ -414,8 +414,10 @@ void LLCoprocedurePool::coprocedureInvokerCoro( { coproc->mProc(httpAdapter, coproc->mId); } - catch (const LLCoros::Stop &) + catch (const LLCoros::Stop &e) { + LL_INFOS("LLCoros") << "coprocedureInvokerCoro terminating because " + << e.what() << LL_ENDL; throw; // let toplevel handle this as LLContinueError } catch (...) |