equal
deleted
inserted
replaced
20 */ |
20 */ |
21 |
21 |
22 #ifndef __SBENGINE_MMH__ |
22 #ifndef __SBENGINE_MMH__ |
23 #define __SBENGINE_MMH__ |
23 #define __SBENGINE_MMH__ |
24 |
24 |
25 |
|
26 /** By default, the SBE logs only in DEBUG builds. If you want |
|
27 both release and debug logging, then comment this line out */ |
|
28 #define __SBE_DISABLE_RELEASE_LOGGING |
|
29 |
|
30 |
|
31 #if defined(__SBE_DISABLE_RELEASE_LOGGING) |
|
32 |
|
33 MACRO SBE_LOGGING_DEBUG_ONLY |
|
34 |
|
35 #else |
|
36 |
|
37 MACRO SBE_LOGGING_DEBUG_AND_RELEASE |
|
38 |
|
39 #endif |
25 #endif |
40 |
|
41 |
|
42 /** The following macros are used (when logging is enabled) to |
|
43 configure the type of logging to perform */ |
|
44 |
|
45 |
|
46 /** Uncomment this line to enable FLOGGER (File) logging */ |
|
47 MACRO SBE_LOGGING_METHOD_FLOGGER |
|
48 |
|
49 /** Uncomment this line to enable RDEBUG logging */ |
|
50 //MACRO SBE_LOGGING_METHOD_RDEBUG |
|
51 |
|
52 /** Uncomment this line to enable UI (User::InfoPrint) logging. This |
|
53 can cause UI deadlock in some UI systems. */ |
|
54 //MACRO SBE_LOGGING_METHOD_UI |
|
55 |
|
56 |
|
57 |
|
58 |
|
59 #endif |
|