diff -r 36d367c62acb -r 76f25fb7a6a1 imstutils/imconnectionprovider/inc/icplogger.h --- a/imstutils/imconnectionprovider/inc/icplogger.h Tue May 11 16:01:07 2010 +0300 +++ b/imstutils/imconnectionprovider/inc/icplogger.h Tue May 25 12:27:36 2010 +0300 @@ -20,6 +20,15 @@ #ifndef __ICPLOGGER_H__ #define __ICPLOGGER_H__ +#ifdef __WINS__ + #ifdef _DEBUG + #define ICP_ENABLE_DEBUG_LOGS // for WINS UDEB + #endif +#else + #ifdef _DEBUG + #define ICP_ENABLE_DEBUG_LOGS // for device UDEB + #endif +#endif #define SCP_TP_PRINT(s) L##s #define SCP_STRA_PRINT(s) SCP_TP_PRINT(s) #define SCP_STR_PRINT(t) SCP_STRA_PRINT("[SCP]") L##t @@ -103,6 +112,7 @@ inline void IcpDebugWriteFormat(TRefByValue aFmt,...) { +#ifdef ICP_ENABLE_DEBUG_LOGS _LIT(KDir, "icp"); _LIT(KName, "icp.log"); @@ -111,6 +121,7 @@ VA_START(args,aFmt); RFileLogger::WriteFormat(KDir, KName, EFileLoggingModeAppend, aFmt, args); VA_END(args); +#endif } #endif // __SCPLOGGER_H__