equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: Resource headers for project mediatorserver |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MEDIATORDEBUG_HRH |
|
20 #define MEDIATORDEBUG_HRH |
|
21 |
|
22 /** Logging options */ |
|
23 enum EDebugLogMode |
|
24 { |
|
25 ELogAll = 0, // log all events |
|
26 ELogInclusive = 1, // log only specified events |
|
27 ELogExclusive = 2 // log all events except the specified ones |
|
28 }; |
|
29 |
|
30 /** generic monitoring flags */ |
|
31 #define KLogEvents 0x01 |
|
32 #define KLogCommands 0x02 |
|
33 #define KLogStatus 0x04 // status reporting |
|
34 #define KLogParameterData 0x08 // log parameter data |
|
35 |
|
36 #endif // MEDIATORDEBUG_HRH |