diff --git a/indra/newview/llagentpilot.cpp b/indra/newview/llagentpilot.cpp
index afeba6bdf07404a92aaa2cc2ba813c8e7ff7edaa..13e10231858dd1ff5e944a8f1aca2b6bae48fbf5 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();
 						}
 					}