|
1 /* |
|
2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Debug configuration file. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef BTENG_DEBUGCONFIG_H |
|
20 #define BTENG_DEBUGCONFIG_H |
|
21 |
|
22 |
|
23 #include "prjconfig.h" |
|
24 |
|
25 /** |
|
26 * Custom logging variations. |
|
27 */ |
|
28 #ifdef PRJ_FILE_TRACE |
|
29 _LIT( KLogFile, "bteng.txt" ); |
|
30 _LIT( KLogDir, "bteng" ); |
|
31 #endif |
|
32 |
|
33 |
|
34 #ifdef PRJ_ENABLE_TRACE |
|
35 _LIT( KTracePrefix16, "[BTEng] " ); |
|
36 _LIT8( KTracePrefix8, "[BTEng] " ); |
|
37 _LIT8( KFuncFormat8, "><%S" ); |
|
38 _LIT8( KFuncThisFormat8, "><%S, [0x%08X]" ); |
|
39 _LIT8( KFuncEntryFormat8, ">%S" ); |
|
40 _LIT8( KFuncEntryThisFormat8, ">%S, [0x%08X]" ); |
|
41 _LIT8( KFuncExitFormat8, "<%S" ); |
|
42 |
|
43 _LIT( KPanicCategory, "BT Engine" ); |
|
44 _LIT8( KPanicPrefix8, "PANIC code " ); |
|
45 _LIT8( KLeavePrefix8, "LEAVE code " ); |
|
46 #endif |
|
47 |
|
48 #endif // BTENG_DEBUGCONFIG_H |