Changeset 3548 in orxonox.OLD for orxonox/trunk/src/defs
- Timestamp:
- Mar 14, 2005, 8:57:25 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/defs/debug.h
r3511 r3548 27 27 #define INFO 3 28 28 #define DEBUGING 4 29 #define vDEBUGING 5 29 30 30 31 #if HAVE_CONFIG_H … … 76 77 #endif 77 78 78 79 #if DEBUG >= vDEBUGING 80 #define PRINTF5 \ 81 if (verbose >= vDEBUGING) \ 82 printf("VERYDEBUG::%s:%d:", __FILE__, __LINE__) && printf 83 #else 84 #define PRINTF5 if (NO) 85 #endif 86 79 87 #else 80 88 #define PRINTF(x) if (NO) … … 124 132 #else 125 133 #define PRINT4 if (NO) 134 #endif 135 136 #if DEBUG >= vDEBUGING 137 #define PRINT5 \ 138 if (verbose >= vDEBUGING) \ 139 printf("VERYDEBUG::%s:%d:", __FILE__, __LINE__) && printf 140 #else 141 #define PRINT5 if (NO) 126 142 #endif 127 143
Note: See TracChangeset
for help on using the changeset viewer.