diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-02-03 17:52:45 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-02-03 17:52:45 -0500 |
commit | 04ddae45b284b8f535aa6cdc6b90af2088e82334 (patch) | |
tree | 3e01878d4c74b7e8ef430720e97d2d02e920d79f /indra/newview | |
parent | 5bd5d918caa63338a678e2c94db9195f77867e8a (diff) |
SH-872 WIP - restored log statements, as removing them had no effect
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llagentpilot.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/indra/newview/llagentpilot.cpp b/indra/newview/llagentpilot.cpp index afeba6bdf0..13e1023185 100644 --- a/indra/newview/llagentpilot.cpp +++ b/indra/newview/llagentpilot.cpp @@ -178,8 +178,6 @@ void LLAgentPilot::stopPlayback() } } -#define SKIP_PILOT_LOGGING 1 - void LLAgentPilot::updateTarget() { if (mPlaying) @@ -197,9 +195,7 @@ void LLAgentPilot::updateTarget() { if (!mStarted) { -#if SKIP_PILOT_LOGGING llinfos << "At start, beginning playback" << llendl; -#endif mTimer.reset(); mStarted = TRUE; } @@ -222,23 +218,17 @@ 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(); } } |