summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Kittenbrink <brad@lindenlab.com>2019-03-14 17:08:32 -0700
committerNat Goodspeed <nat@lindenlab.com>2020-03-25 18:39:21 -0400
commit8013a81adca731ebaade605290b2a4e7f94d5d05 (patch)
treef18e9804b414e5d988fd257f2047c66221ff016f
parentb09aa6a2bf2f908ff890b920149976e04fd420db (diff)
Switched LL_ERRS to LL_WARNS for case where promise is fulfilled multiple times by multiple events.
-rw-r--r--indra/llcommon/lleventcoro.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lleventcoro.cpp b/indra/llcommon/lleventcoro.cpp
index aa9f4b7840..421897cb98 100644
--- a/indra/llcommon/lleventcoro.cpp
+++ b/indra/llcommon/lleventcoro.cpp
@@ -149,7 +149,7 @@ LLBoundListener postAndSuspendSetup(const std::string& callerName,
}
catch(boost::fibers::promise_already_satisfied & ex)
{
- LL_ERRS("lleventcoro") << "promise already satisfied in '"
+ LL_WARNS("lleventcoro") << "promise already satisfied in '"
<< listenerName << "' " << ex.what() << LL_ENDL;
}
return consuming;