diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2009-12-08 16:57:45 -0800 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2009-12-08 16:57:45 -0800 |
commit | be49b8bed5fbd6cde63d8c5b6de432dc1f4b123d (patch) | |
tree | 5c05d11ea2bf736168e9127f0ee270a76a628c4e /indra/llcommon | |
parent | e07ef0d0e0e8cbd58afd4c6ee970634bd2f783e7 (diff) |
EXT-3158 - Removing logging of users password hash from new login code.
Reviewed by Brad
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/lleventcoro.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/llcommon/lleventcoro.h b/indra/llcommon/lleventcoro.h index c6d9de171d..1981ae7482 100644 --- a/indra/llcommon/lleventcoro.h +++ b/indra/llcommon/lleventcoro.h @@ -203,9 +203,12 @@ LLSD postAndWait(SELF& self, const LLSD& event, const LLEventPumpOrPumpName& req // request event. LLSD modevent(event); LLEventDetail::storeToLLSDPath(modevent, replyPumpNamePath, replyPump.getPump().getName()); - LL_DEBUGS("lleventcoro") << "postAndWait(): coroutine " << listenerName + LL_DEBUGS("lleventcoro") << "postAndWait(): coroutine " << listenerName << " posting to " << requestPump.getPump().getName() - << ": " << modevent << LL_ENDL; + << LL_ENDL; + + // *NOTE:Mani - Removed because modevent could contain user's hashed passwd. + // << ": " << modevent << LL_ENDL; requestPump.getPump().post(modevent); } LL_DEBUGS("lleventcoro") << "postAndWait(): coroutine " << listenerName |