diff -r 000000000000 -r 08ec8eefde2f persistentstorage/centralrepository/common/inc/log.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/persistentstorage/centralrepository/common/inc/log.h Fri Jan 22 11:06:30 2010 +0200 @@ -0,0 +1,66 @@ +// Copyright (c) 2005-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: +// + +#ifndef CENTREP_LOG_H +#define CENTREP_LOG_H + +#include + +// +// MACROs for trace statements in client/server code. +// + +#ifdef CENTREP_TRACE + +#define __CENTREP_TRACE(_text) RDebug::Print(_L(_text)) +#define __CENTREP_TRACE1(_text, _a1) RDebug::Print(_L(_text), (_a1)) +#define __CENTREP_TRACE2(_text, _a1, _a2) RDebug::Print(_L(_text), (_a1), (_a2)) +#define __CENTREP_TRACE3(_text, _a1, _a2, _a3) RDebug::Print(_L(_text), (_a1), (_a2), (_a3)) + +#else + +#define __CENTREP_TRACE(_text) +#define __CENTREP_TRACE1(_text, _a1) +#define __CENTREP_TRACE2(_text, _a1, _a2) +#define __CENTREP_TRACE3(_text, _a1, _a2, _a3) + +#endif + +// macro for trace statements of just the server subsession +// note: this is needed for greater granularity than the centrep_trace macro +// offers + + +#ifdef SRVSUBSESS_TRACE + +#define __SRVSUBSESS_TRACE(_text) RDebug::Print(_L(_text)) +#define __SRVSUBSESS_TRACE1(_text, _a1) RDebug::Print(_L(_text), (_a1)) +#define __SRVSUBSESS_TRACE2(_text, _a1, _a2) RDebug::Print(_L(_text), (_a1), (_a2)) +#define __SRVSUBSESS_TRACE3(_text, _a1, _a2, _a3) RDebug::Print(_L(_text), (_a1), (_a2), (_a3)) +#define __SRVSUBSESS_TRACE4(_text, _a1, _a2, _a3, _a4) RDebug::Print(_L(_text), (_a1), (_a2), (_a3),(_a4)) + +#else + +#define __SRVSUBSESS_TRACE(_text) +#define __SRVSUBSESS_TRACE1(_text, _a1) +#define __SRVSUBSESS_TRACE2(_text, _a1, _a2) +#define __SRVSUBSESS_TRACE3(_text, _a1, _a2, _a3) +#define __SRVSUBSESS_TRACE4(_text, _a1, _a2, _a3, _a4) + +#endif + + +#endif // CENTREP_LOG_H +