connectivitymodules/SeCon/services/csc/src/caplist.cpp
branchRCL_3
changeset 17 dbd1c5e08735
parent 0 d0791faffa3f
--- a/connectivitymodules/SeCon/services/csc/src/caplist.cpp	Mon Jun 21 16:36:59 2010 +0300
+++ b/connectivitymodules/SeCon/services/csc/src/caplist.cpp	Thu Jul 15 19:35:12 2010 +0300
@@ -34,12 +34,10 @@
 //
 CCapList* CCapList::NewL()
     {
-    TRACE_FUNC_ENTRY;
     CCapList* self = new(ELeave) CCapList();
     CleanupStack::PushL( self );
     self->ConstructL();
     CleanupStack::Pop( self );
-    TRACE_FUNC_EXIT;
     return self;
     }
 
@@ -50,9 +48,7 @@
 //
 CCapList::~CCapList()
     {
-    TRACE_FUNC_ENTRY;
     delete iList;
-    TRACE_FUNC_EXIT;
     }
 
 // -----------------------------------------------------------------------------
@@ -71,9 +67,7 @@
 //
 void CCapList::ConstructL()
     {
-    TRACE_FUNC_ENTRY;
     iList = CStringList::NewL();
-    TRACE_FUNC_EXIT;
     }
 
 // -----------------------------------------------------------------------------
@@ -94,7 +88,6 @@
 //
 TInt CCapList::FindFromMark(TInt aId, TInt aType)
     {
-    TRACE_FUNC_ENTRY;
     TInt mark = List()->Mark();
     TInt count= List()->Count();
     
@@ -106,7 +99,6 @@
     TInt index=Find(aId, aType, mark);
     if ( index == KErrNotFound )
         {
-        LOGGER_WRITE_1( "CCapList::FindFromMark(TInt aId, TInt aType) returned : %d", KErrNotFound );
         return KErrNotFound;
         }
         
@@ -114,7 +106,6 @@
     __ASSERT_DEBUG(index>=mark, CapUtil::Panic(KErrGeneral));
 
     List()->SetMark(index+1);
-    LOGGER_WRITE_1( "CCapList::FindFromMark(TInt aId, TInt aType) returned : %d", index );
     return index;
     }