Skip to content
Snippets Groups Projects
Commit 99b203d4 authored by Brad Payne (Vir Linden)'s avatar Brad Payne (Vir Linden)
Browse files

MAINT-7482 - continue running with a warning on receipt of unknown message

parent 48af8529
No related branches found
No related tags found
No related merge requests found
...@@ -499,9 +499,10 @@ BOOL LLTemplateMessageReader::decodeTemplate( ...@@ -499,9 +499,10 @@ BOOL LLTemplateMessageReader::decodeTemplate(
} }
else else
{ {
LL_WARNS() << "Message #" << std::hex << num << std::dec // MAINT-7482 - make viewer more tolerant of unknown messages.
<< " received but not registered!" << LL_ENDL; LL_WARNS_ONCE() << "Message #" << std::hex << num << std::dec
gMessageSystem->callExceptionFunc(MX_UNREGISTERED_MESSAGE); << " received but not registered!" << LL_ENDL;
//gMessageSystem->callExceptionFunc(MX_UNREGISTERED_MESSAGE);
return(FALSE); return(FALSE);
} }
......
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