diff -r 098e361762d2 -r 6b63ca65093a cpsecplugins/devicelockplugin/src/debug.h --- a/cpsecplugins/devicelockplugin/src/debug.h Fri May 14 16:43:26 2010 +0300 +++ b/cpsecplugins/devicelockplugin/src/debug.h Thu May 27 13:44:17 2010 +0300 @@ -15,44 +15,26 @@ * */ -#if 0 -#ifndef DEBUG_H_ -#define DEBUG_H_ - -#define DL_TRACE( x ) RDebug::Printf( "%s %s (%u) %s", __FILE__, __PRETTY_FUNCTION__, __LINE__, x ); -#define DL_TRACE_NUM( x, y ) RDebug::Printf( "%s %s (%u) %s=%x", __FILE__, __PRETTY_FUNCTION__, __LINE__, x, y ); - - -#endif /* DEBUG_H_ */ -#endif +#if defined (_DEBUG) - - - - -#ifndef SCPDEBUG_H -#define SCPDEBUG_H - - _LIT( KLogFile, "SCP.log" ); - _LIT( KLogDir, "tarm" ); - - +_LIT( KLogFile, "Devicelockplugin.log" ); +_LIT( KLogDir, "Devicelockplugin" ); #include #include #include #include - inline void FWrite (TRefByValue aFmt,...) - { - VA_LIST list; - VA_START( list, aFmt ); - RFileLogger::WriteFormat( KLogDir,KLogFile,EFileLoggingModeAppend ,TPtrC(aFmt) ,list ); - } +inline void FWrite (TRefByValue aFmt,...) + { + VA_LIST list; + VA_START( list, aFmt ); + RFileLogger::WriteFormat( KLogDir,KLogFile,EFileLoggingModeAppend ,TPtrC(aFmt) ,list ); + } - #define Dprint(arg...) FWrite arg; + #define Dprint(arg...) FWrite arg; #else - #define Dprint(arg...) + #define Dprint(arg...) #endif // _DEBUG - +