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.master
parent
1bd2a91d00
commit
be662c65ca
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue