os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/tracemacros.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/tracemacros.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,70 @@
     1.4 +/*
     1.5 +* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:
    1.18 +* MACROS
    1.19 +* DEFINES
    1.20 +*
    1.21 +*/
    1.22 +
    1.23 +
    1.24 +
    1.25 +#ifdef _DEBUG	// Debug build
    1.26 +	#define COMMON_RDEBUG(X)				RDebug::Print(X)		
    1.27 +    #define COMMON_RDEBUG_INT(X,Y)			RDebug::Print(X,Y)
    1.28 +    
    1.29 +#else	// hw environment
    1.30 +	#define COMMON_RDEBUG(X)
    1.31 +	#define COMMON_RDEBUG_INT(X,Y)	
    1.32 +    		
    1.33 +#endif
    1.34 +
    1.35 +//
    1.36 +// Use "macro _RD_COMMONENGINE_DETAILED_TRACE"" in commonengine.mmp file 
    1.37 +// to enable detailed trace of Commonengine.
    1.38 +//
    1.39 +#ifdef _RD_COMMONENGINE_DETAILED_TRACE	// Debug environment
    1.40 +	#define COMMONENGINE_RDEBUG(X)				RDebug::Print(X)
    1.41 +	#define COMMONENGINE_RDEBUG_SUBSTITUTE(X)	RDebug::Print(_L("%S"), &X) 	
    1.42 +    #define COMMONENGINE_RDEBUG_INT(X,Y)		RDebug::Print(X,Y)
    1.43 +    #define COMMONENGINE_RDEBUG_INT2(X,Y,Z)		RDebug::Print(X,Y,Z)
    1.44 +    #define COMMONENGINE_RDEBUG_INT3(X,Y,Z,Q)	RDebug::Print(X,Y,Z,Q)
    1.45 +    #define COMMONENGINE_RDEBUG_INT4(X,Y,Z,Q,W)	RDebug::Print(X,Y,Z,Q,W)	
    1.46 +  
    1.47 +#else	// hw environment
    1.48 +	#define COMMONENGINE_RDEBUG(X)	
    1.49 +	#define COMMONENGINE_RDEBUG_SUBSTITUTE(X)
    1.50 +    #define COMMONENGINE_RDEBUG_INT(X,Y)
    1.51 +    #define COMMONENGINE_RDEBUG_INT2(X,Y,Z)    
    1.52 +    #define COMMONENGINE_RDEBUG_INT3(X,Y,Z,Q)
    1.53 +    #define COMMONENGINE_RDEBUG_INT4(X,Y,Z,Q,W)
    1.54 +	
    1.55 +#endif
    1.56 +
    1.57 +//
    1.58 +// Use "macro _RD_FEATMGR_DETAILED_TRACE" in featmgr.mmp file 
    1.59 +// to enable detailed trace of FeatureManager.
    1.60 +//
    1.61 +#ifdef _RD_FEATMGR_DETAILED_TRACE	// Debug build
    1.62 +	#define FEATMGR_RDEBUG(X)						RDebug::Print(X)		
    1.63 +    #define FEATMGR_RDEBUG_INT(X,Y)					RDebug::Print(X,Y)
    1.64 +    
    1.65 +#else	// hw environment
    1.66 +	#define FEATMGR_RDEBUG(X)
    1.67 +	#define FEATMGR_RDEBUG_INT(X,Y)	
    1.68 +    		
    1.69 +#endif
    1.70 +
    1.71 +
    1.72 +            
    1.73 +// End of File