sl@0: /* sl@0: * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * MACROS sl@0: * DEFINES sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifdef _DEBUG // Debug build sl@0: #define COMMON_RDEBUG(X) RDebug::Print(X) sl@0: #define COMMON_RDEBUG_INT(X,Y) RDebug::Print(X,Y) sl@0: sl@0: #else // hw environment sl@0: #define COMMON_RDEBUG(X) sl@0: #define COMMON_RDEBUG_INT(X,Y) sl@0: sl@0: #endif sl@0: sl@0: // sl@0: // Use "macro _RD_COMMONENGINE_DETAILED_TRACE"" in commonengine.mmp file sl@0: // to enable detailed trace of Commonengine. sl@0: // sl@0: #ifdef _RD_COMMONENGINE_DETAILED_TRACE // Debug environment sl@0: #define COMMONENGINE_RDEBUG(X) RDebug::Print(X) sl@0: #define COMMONENGINE_RDEBUG_SUBSTITUTE(X) RDebug::Print(_L("%S"), &X) sl@0: #define COMMONENGINE_RDEBUG_INT(X,Y) RDebug::Print(X,Y) sl@0: #define COMMONENGINE_RDEBUG_INT2(X,Y,Z) RDebug::Print(X,Y,Z) sl@0: #define COMMONENGINE_RDEBUG_INT3(X,Y,Z,Q) RDebug::Print(X,Y,Z,Q) sl@0: #define COMMONENGINE_RDEBUG_INT4(X,Y,Z,Q,W) RDebug::Print(X,Y,Z,Q,W) sl@0: sl@0: #else // hw environment sl@0: #define COMMONENGINE_RDEBUG(X) sl@0: #define COMMONENGINE_RDEBUG_SUBSTITUTE(X) sl@0: #define COMMONENGINE_RDEBUG_INT(X,Y) sl@0: #define COMMONENGINE_RDEBUG_INT2(X,Y,Z) sl@0: #define COMMONENGINE_RDEBUG_INT3(X,Y,Z,Q) sl@0: #define COMMONENGINE_RDEBUG_INT4(X,Y,Z,Q,W) sl@0: sl@0: #endif sl@0: sl@0: // sl@0: // Use "macro _RD_FEATMGR_DETAILED_TRACE" in featmgr.mmp file sl@0: // to enable detailed trace of FeatureManager. sl@0: // sl@0: #ifdef _RD_FEATMGR_DETAILED_TRACE // Debug build sl@0: #define FEATMGR_RDEBUG(X) RDebug::Print(X) sl@0: #define FEATMGR_RDEBUG_INT(X,Y) RDebug::Print(X,Y) sl@0: sl@0: #else // hw environment sl@0: #define FEATMGR_RDEBUG(X) sl@0: #define FEATMGR_RDEBUG_INT(X,Y) sl@0: sl@0: #endif sl@0: sl@0: sl@0: sl@0: // End of File