diff options
author | simon <none@none> | 2013-04-17 11:17:46 -0700 |
---|---|---|
committer | simon <none@none> | 2013-04-17 11:17:46 -0700 |
commit | 6742d90d39fbb5c5bc3b675f37841fd6c8ec09c9 (patch) | |
tree | 841285193b28a3c971051f53573a2a2f1c83a330 /indra/llcommon/llthread.cpp | |
parent | c537b63936e49d4e685d96695334fdd7a961b470 (diff) |
Some minor cleanups while hunting crashes. Reviewed by Kelly
Diffstat (limited to 'indra/llcommon/llthread.cpp')
-rw-r--r-- | indra/llcommon/llthread.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llthread.cpp b/indra/llcommon/llthread.cpp index 6c117f7daf..60adeeaeb7 100644 --- a/indra/llcommon/llthread.cpp +++ b/indra/llcommon/llthread.cpp @@ -67,7 +67,8 @@ LL_COMMON_API void assert_main_thread() static U32 s_thread_id = LLThread::currentID(); if (LLThread::currentID() != s_thread_id) { - llerrs << "Illegal execution outside main thread." << llendl; + llwarns << "Illegal execution from thread id " << (S32) LLThread::currentID() + << " outside main thread " << (S32) s_thread_id << llendl; } } |