Remove extraneous debug.
authorJim Carroll <thecarrolls@jiminger.com>
Mon, 24 Dec 2012 04:14:53 +0000 (23:14 -0500)
committerJim Carroll <thecarrolls@jiminger.com>
Mon, 24 Dec 2012 04:14:53 +0000 (23:14 -0500)
xbmc/interfaces/python/XBPyThread.cpp

index a8931a1..171f393 100644 (file)
@@ -395,7 +395,6 @@ void XBPyThread::Process()
   }
 
   PyEval_AcquireLock();
-  CLog::Log(LOGDEBUG,"**** acquired lock");
   PyThreadState_Swap(state);
 
   m_pExecuter->DeInitializeInterpreter();
@@ -447,7 +446,6 @@ void XBPyThread::Process()
   languageHook->UnregisterMe();
 
   PyEval_ReleaseLock();
-  CLog::Log(LOGDEBUG,"**** released lock");
 
 }