diff options
author | Graham Madarasz <graham@lindenlab.com> | 2013-06-02 17:08:01 -0700 |
---|---|---|
committer | Graham Madarasz <graham@lindenlab.com> | 2013-06-02 17:08:01 -0700 |
commit | a1888e72fa52a5f99a4bb8be86fcd9f36254135f (patch) | |
tree | 252a0c09986ef28b307330311d5ec69af32a1e0d /indra/llcommon | |
parent | 842a6c6e46ff14bca4bd142b6edcd8b2964f2587 (diff) |
BUG-2707 eliminate debug message and memory dump from FrameWatcher, which appears to be going off on login for some
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-x | indra/llcommon/llsys.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index b8e8125e68..10beb00113 100755 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -1385,7 +1385,7 @@ public: return false; } // Congratulations, we've hit a new low. :-P - +#if BUG_2707_A_LOWER_KIND_OF_LOW LL_INFOS("FrameWatcher") << ' '; if (! prevSize) { @@ -1398,6 +1398,7 @@ public: } LL_CONT << std::fixed << std::setprecision(1) << framerate << '\n' << LLMemoryInfo() << LL_ENDL; +#endif return false; } |