equal
deleted
inserted
replaced
|
1 /* |
|
2 * This file enables or disables the logger |
|
3 * functionality in Browser Application. |
|
4 * File included into mmp files. |
|
5 */ |
|
6 |
|
7 // define this macro to enable browser log |
|
8 // #define __BROWSER_LOG_ENABLE |
|
9 |
|
10 // define this macro to enable browser performance log |
|
11 //#define __BROWSER_PERF_LOG_ENABLE |
|
12 |
|
13 |
|
14 // debug mode always activates log |
|
15 #if defined( __BROWSER_LOG_ENABLE ) || defined( _DEBUG ) |
|
16 MACRO I__BROWSER_LOG_ENABLED |
|
17 #define I__BROWSER_LOG_ENABLED |
|
18 #endif |
|
19 |
|
20 #if defined( __BROWSER_PERF_LOG_ENABLE ) |
|
21 MACRO I__BROWSER_PERF_LOG_ENABLED |
|
22 #define I__BROWSER_PERF_LOG_ENABLED |
|
23 #endif |