1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComDebug.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef ECOM_DEBUG_H
1.20 +#define ECOM_DEBUG_H
1.21 +
1.22 +#include <e32debug.h>
1.23 +#include <ecom/ecompanics.h>
1.24 +
1.25 +// Make sure release builds get a warning if
1.26 +#ifndef _DEBUG
1.27 +#if (defined ECOM_TRACE)
1.28 +#warning "Use of RDebug::Print tracing in a release build, check MMP files"
1.29 +#endif
1.30 +#endif
1.31 +
1.32 +// Panic category string for client DLL panics, see ecompanic.h
1.33 +_LIT(KEComClientDLLPanicCategory, "ECOMClientDLL");
1.34 +
1.35 +// Panic category string for server panics, see ecompanic.h
1.36 +_LIT(KEComServerPanicCategory, "ECOMServer");
1.37 +
1.38 +//
1.39 +// MACROs for log statements in client/server code.
1.40 +//
1.41 +
1.42 +#define __ECOM_LOG(_text) RDebug::Print(_L(_text))
1.43 +#define __ECOM_LOG1(_text, _a1) RDebug::Print(_L(_text), (_a1))
1.44 +
1.45 +//
1.46 +// MACROs for trace statements in client/server code.
1.47 +//
1.48 +
1.49 +#ifdef ECOM_TRACE
1.50 +
1.51 +#define __ECOM_TRACE(_text) RDebug::Print(_L(_text))
1.52 +#define __ECOM_TRACE1(_text, _a1) RDebug::Print(_L(_text), (_a1))
1.53 +#define __ECOM_TRACE2(_text, _a1, _a2) RDebug::Print(_L(_text), (_a1), (_a2))
1.54 +#define __ECOM_TRACE3(_text, _a1, _a2, _a3) RDebug::Print(_L(_text), (_a1), (_a2), (_a3))
1.55 +#define __ECOM_TRACE4(_text, _a1, _a2, _a3, _a4) RDebug::Print(_L(_text), (_a1), (_a2), (_a3), (_a4))
1.56 +#define __ECOM_TRACE5(_text, _a1, _a2, _a3, _a4, _a5) RDebug::Print(_L(_text), (_a1), (_a2), (_a3), (_a4), (_a5))
1.57 +#define __ECOM_TRACE6(_text, _a1, _a2, _a3, _a4, _a5, _a6) RDebug::Print(_L(_text), (_a1), (_a2), (_a3), (_a4), (_a5), (_a6))
1.58 +
1.59 +#else
1.60 +
1.61 +#define __ECOM_TRACE(_text)
1.62 +#define __ECOM_TRACE1(_text, _a1)
1.63 +#define __ECOM_TRACE2(_text, _a1, _a2)
1.64 +#define __ECOM_TRACE3(_text, _a1, _a2, _a3)
1.65 +#define __ECOM_TRACE4(_text, _a1, _a2, _a3, _a4)
1.66 +#define __ECOM_TRACE5(_text, _a1, _a2, _a3, _a4, _a5)
1.67 +#define __ECOM_TRACE6(_text, _a1, _a2, _a3, _a4, _a5, _a6)
1.68 +
1.69 +#endif
1.70 +
1.71 +
1.72 +
1.73 +
1.74 +#endif // ECOM_DEBUG_H
1.75 +