diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2019-12-18 15:54:00 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 19:25:42 -0400 |
commit | 0756885eadafbda9763769186f14d728f0887ead (patch) | |
tree | 7ec74e31b4cbe85ec8ca50289957a59383ad4ec2 /indra/llcommon | |
parent | 1c62f52af83aa6e6684f5d1f496d8095c7ca321f (diff) |
DRTVWR-476: make printActiveCoroutines() output slightly clearer.
For the main coroutine on each thread, show the 'main0' (or whatever) name
instead of the empty-string name.
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llcoros.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llcoros.cpp b/indra/llcommon/llcoros.cpp index adb86c4e0b..262929006d 100644 --- a/indra/llcommon/llcoros.cpp +++ b/indra/llcommon/llcoros.cpp @@ -223,7 +223,7 @@ void LLCoros::printActiveCoroutines(const std::string& when) { F64 life_time = time - cd.mCreationTime; LL_CONT << LL_NEWLINE - << cd.mName << ' ' << cd.mStatus << " life: " << life_time; + << cd.getKey() << ' ' << cd.mStatus << " life: " << life_time; } LL_CONT << LL_ENDL; LL_INFOS("LLCoros") << "-----------------------------------------------------" << LL_ENDL; |