diff options
| author | Brad Kittenbrink <brad@lindenlab.com> | 2019-03-14 17:08:32 -0700 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 18:39:21 -0400 | 
| commit | 8013a81adca731ebaade605290b2a4e7f94d5d05 (patch) | |
| tree | f18e9804b414e5d988fd257f2047c66221ff016f | |
| parent | b09aa6a2bf2f908ff890b920149976e04fd420db (diff) | |
Switched LL_ERRS to LL_WARNS for case where promise is fulfilled multiple times by multiple events.
| -rw-r--r-- | indra/llcommon/lleventcoro.cpp | 2 | 
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; | 
