diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-01-31 18:03:39 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-01-31 18:03:39 -0500 |
commit | 7205ad6d53224d5ade142c579d1c38b49f3d9885 (patch) | |
tree | 8c279626cf295f6996d83b4127bc5cf7a9858121 /indra/newview/llagentpilot.cpp | |
parent | 435e9de7f1d0ca25fc2e8f36b4be3265cf0357d7 (diff) |
SH-872 WIP - temporarily disabling problematic log output to see if that fixes crash on test machine
Diffstat (limited to 'indra/newview/llagentpilot.cpp')
-rwxr-xr-x[-rw-r--r--] | indra/newview/llagentpilot.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llagentpilot.cpp b/indra/newview/llagentpilot.cpp index 13e1023185..afeba6bdf0 100644..100755 --- a/indra/newview/llagentpilot.cpp +++ b/indra/newview/llagentpilot.cpp @@ -178,6 +178,8 @@ void LLAgentPilot::stopPlayback() } } +#define SKIP_PILOT_LOGGING 1 + void LLAgentPilot::updateTarget() { if (mPlaying) @@ -195,7 +197,9 @@ void LLAgentPilot::updateTarget() { if (!mStarted) { +#if SKIP_PILOT_LOGGING llinfos << "At start, beginning playback" << llendl; +#endif mTimer.reset(); mStarted = TRUE; } @@ -218,17 +222,23 @@ void LLAgentPilot::updateTarget() { if ((mNumRuns < 0) || (mNumRuns > 0)) { +#if SKIP_PILOT_LOGGING llinfos << "Looping, restarting playback" << llendl; +#endif startPlayback(); } else if (mQuitAfterRuns) { +#if SKIP_PILOT_LOGGING llinfos << "Done with all runs, quitting viewer!" << llendl; +#endif LLAppViewer::instance()->forceQuit(); } else { +#if SKIP_PILOT_LOGGING llinfos << "Done with all runs, disabling pilot" << llendl; +#endif stopPlayback(); } } |