diff -r 24062c24fe38 -r 2a26698d78ba phoneapp/phoneuiutils/src/cphonetimer.cpp --- a/phoneapp/phoneuiutils/src/cphonetimer.cpp Fri Mar 12 15:42:40 2010 +0200 +++ b/phoneapp/phoneuiutils/src/cphonetimer.cpp Mon Mar 15 12:40:24 2010 +0200 @@ -20,7 +20,6 @@ // INCLUDE FILES #include "cphonetimer.h" #include "phoneui.pan" -#include "phonelogger.h" // ================= MEMBER FUNCTIONS ======================= @@ -31,7 +30,6 @@ CPhoneTimer::CPhoneTimer( TInt aPriority ) : CTimer( aPriority) { - __LOGMETHODSTARTEND(EPhoneUIUtils, "CPhoneTimer::CPhoneTimer() "); CActiveScheduler::Add( this ); } @@ -41,7 +39,6 @@ // void CPhoneTimer::ConstructL() { - __LOGMETHODSTARTEND(EPhoneUIUtils, "CPhoneTimer::ConstructL() "); CTimer::ConstructL(); } @@ -51,7 +48,6 @@ // EXPORT_C CPhoneTimer* CPhoneTimer::NewL( TInt aPriority ) { - __LOGMETHODSTARTEND(EPhoneUIUtils, "CPhoneTimer::NewL() "); CPhoneTimer* self = new (ELeave) CPhoneTimer( aPriority ); CleanupStack::PushL( self ); @@ -67,7 +63,6 @@ // EXPORT_C CPhoneTimer::~CPhoneTimer() { - __LOGMETHODSTARTEND(EPhoneUIUtils, "CPhoneTimer::~CPhoneTimer() "); Cancel(); } @@ -77,10 +72,6 @@ // void CPhoneTimer::RunL() { - __PHONELOG1( EBasic, EPhoneUIUtils, - "CPhoneTimer::RunL iStatus(%d)", - iStatus.Int() ); - if ( iStatus != KErrNone ) { //error code is ignored, as CPeriodic. @@ -89,14 +80,10 @@ if ( !iTimerObserver ) { - __PHONELOG( EBasic, EPhoneUIUtils, - "CPhoneTimer::RunL CallBack" ); iCallBack.CallBack(); } else { - __PHONELOG( EBasic, EPhoneUIUtils, - "CPhoneTimer::RunL HandleTimeOutL" ); iTimerObserver->HandleTimeOutL(); } } @@ -109,7 +96,6 @@ TTimeIntervalMicroSeconds32 anInterval, TCallBack aCallBack ) { - __LOGMETHODSTARTEND(EPhoneUIUtils, "CPhoneTimer::After() "); if ( IsActive() ) { @@ -129,7 +115,6 @@ TTimeIntervalMicroSeconds32 anInterval, MPhoneTimer* aObserver ) { - __LOGMETHODSTARTEND(EPhoneUIUtils, "CPhoneTimer::After() "); __ASSERT_DEBUG( aObserver, Panic( EPhoneUtilsParameterNotInitialized ) ); @@ -147,7 +132,6 @@ // EXPORT_C void CPhoneTimer::CancelTimer() { - __LOGMETHODSTARTEND(EPhoneUIUtils, "CPhoneTimer::CancelTimer() "); Cancel(); } @@ -157,7 +141,6 @@ // void CPhoneTimer::DoCancel() { - __LOGMETHODSTARTEND(EPhoneUIUtils, "CPhoneTimer::DoCancel() "); iTimerObserver = NULL; CTimer::DoCancel(); }