summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2022-02-07 22:50:37 +0200
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2022-02-07 22:50:37 +0200
commit93805cfbc12c247ceb1f422fb0b97310542d78d9 (patch)
tree4c05d110fadfee55b01bb33d57ce65ea129e7d94 /indra/newview
parent855f53901a2265400797f33f3fb8b53ddc6cc07f (diff)
SL-16778 handle shutdown exceptions
These exceptions are expected and do not need to be logged
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llvoicevivox.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp
index 456537de28..015b676fef 100644
--- a/indra/newview/llvoicevivox.cpp
+++ b/indra/newview/llvoicevivox.cpp
@@ -689,6 +689,10 @@ void LLVivoxVoiceClient::voiceControlCoro()
// surviving longer than LLVivoxVoiceClient
voiceControlStateMachine(state);
}
+ catch (const LLCoros::Stop&)
+ {
+ LL_DEBUGS("LLVivoxVoiceClient") << "Received a shutdown exception" << LL_ENDL;
+ }
catch (const LLContinueError&)
{
LOG_UNHANDLED_EXCEPTION("LLVivoxVoiceClient");