summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xindra/newview/llinventorybridge.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index fa49f23364..ec29ec5896 100755
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -3159,7 +3159,10 @@ void LLFolderBridge::gatherMessage(std::string& message, LLError::ELevel log_lev
{
if (!mMessage.empty())
{
- mMessage += "\n";
+ // Currently, we do not gather all messages as it creates very long alerts
+ // Users can get to the whole list of errors on a listing using the "Check for Errors" audit button
+ //mMessage += "\n";
+ return;
}
// Take the leading spaces out...
std::string::size_type start = message.find_first_not_of(" ");