Changeset 3519 in orxonox.OLD for orxonox/branches/trackManager/src/defs
- Timestamp:
- Mar 12, 2005, 1:26:46 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/trackManager/src/defs/debug.h
r3498 r3519 46 46 #define PRINTF1 \ 47 47 if (verbose >= ERR) \ 48 printf(" %s:%d::ERROR:", __FILE__, __LINE__) && printf48 printf("ERROR::%s:%d:", __FILE__, __LINE__) && printf 49 49 #else 50 50 #define PRINTF1 if (NO) … … 54 54 #define PRINTF2 \ 55 55 if (verbose >= WARN) \ 56 printf(" %s:%d::WARNING:", __FILE__, __LINE__) && printf56 printf("WARNING::%s:%d:", __FILE__, __LINE__) && printf 57 57 58 58 #else … … 63 63 #define PRINTF3 \ 64 64 if (verbose >= INFO) \ 65 printf(" %s:%d::INFO:", __FILE__, __LINE__) && printf65 printf("INFO::%s:%d:", __FILE__, __LINE__) && printf 66 66 #else 67 67 #define PRINTF3 if (NO) … … 71 71 #define PRINTF4 \ 72 72 if (verbose >= DEBUGING) \ 73 printf(" %s:%d::DEBUG:", __FILE__, __LINE__) && printf73 printf("DEBUG::%s:%d:", __FILE__, __LINE__) && printf 74 74 #else 75 75 #define PRINTF4 if (NO)
Note: See TracChangeset
for help on using the changeset viewer.