contactextensions/predefinedcontacts/inc/pdclogger.h
branchRCL_3
changeset 20 f4a778e096c2
parent 0 e686773b3f54
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/contactextensions/predefinedcontacts/inc/pdclogger.h	Wed Sep 01 12:29:52 2010 +0100
@@ -0,0 +1,66 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:    Define log macro and the path for saving log.
+*
+*/
+
+
+#ifndef DCDLOGGER_H 
+#define DCDLOGGER_H 
+
+#ifdef _DEBUG 
+#define USE_FILE_LOGGER 
+#endif 
+
+#ifdef USE_FILE_LOGGER 
+
+    #include <flogger.h> 
+    _LIT(KLogFile,"predefinedcontacts.txt"); 
+    _LIT(KLogFolder,"predefinedcontacts"); 
+    #define LOGTEXT(AAA)                RFileLogger::Write(KLogFolder,KLogFile,EFileLoggingModeAppend,AAA)
+
+    #define LOGTEXT2(AAA,BBB)           RFileLogger::WriteFormat(KLogFolder, \
+                                                                KLogFile, \
+                                                                EFileLoggingModeAppend, \
+                                                                (AAA), \
+                                                                (BBB))
+    
+  /*  #define LOGTEXT3(AAA,BBB,CCC)       RFileLogger::WriteFormat(KLogFolder(), \ 
+                                                                 KLogFile(), \ 
+                                                                 EFileLoggingModeAppend, \ 
+                                                                 (AAA), \ 
+                                                                 BBB, \ 
+                                                                 CCC) 
+    /*
+    #define LOGHEXDUMP(AAA,BBB,CCC,DDD) RFileLogger::HexDump(KLogFolder(), \ 
+                                                             KLogFile(), \ 
+                                                             EFileLoggingModeAppend, \ 
+                                                             AAA,\ 
+                                                             BBB,\ 
+                                                             CCC,\ 
+                                                             DDD)    
+                                                           
+*/
+#else 
+
+    #define LOGTEXT(AAA)                
+    #define LOGTEXT2(AAA,BBB)           
+    #define LOGTEXT3(AAA,BBB,CCC)       
+    #define LOGHEXDUMP(AAA,BBB,CCC,DDD) 
+    
+#endif // USE_FILE_LOGGER 
+
+#endif // DCDLOGGER_H 
+
+// End Of File