bluetoothengine/bteng/inc/debugconfig.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 27 Apr 2010 16:49:44 +0300
branchRCL_3
changeset 16 b23265fb36da
parent 0 f63038272f30
permissions -rw-r--r--
Revision: 201015 Kit: 201017

/*
* Copyright (c) 2006 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:  Debug configuration file.
*
*/


#ifndef BTENG_DEBUGCONFIG_H
#define BTENG_DEBUGCONFIG_H


#include "prjconfig.h"

/**
 * Custom logging variations.
 */
#ifdef PRJ_FILE_TRACE
_LIT( KLogFile, "bteng.txt" );
_LIT( KLogDir, "bteng" );
#endif


#ifdef PRJ_ENABLE_TRACE
_LIT( KTracePrefix16, "[BTEng] " );
_LIT8( KTracePrefix8, "[BTEng] " );
_LIT8( KFuncFormat8, "><%S" );
_LIT8( KFuncThisFormat8, "><%S, [0x%08X]" );
_LIT8( KFuncEntryFormat8, ">%S" );
_LIT8( KFuncEntryThisFormat8, ">%S, [0x%08X]" );
_LIT8( KFuncExitFormat8, "<%S" );

_LIT( KPanicCategory, "BT Engine" );
_LIT8( KPanicPrefix8, "PANIC code " );
_LIT8( KLeavePrefix8, "LEAVE code " );
#endif

#endif // BTENG_DEBUGCONFIG_H