Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3548 in orxonox.OLD for orxonox/trunk/src/defs


Ignore:
Timestamp:
Mar 14, 2005, 8:57:25 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: debug information in importer set like they should be

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/defs/debug.h

    r3511 r3548  
    2727#define INFO            3
    2828#define DEBUGING        4
     29#define vDEBUGING       5
    2930
    3031#if HAVE_CONFIG_H
     
    7677#endif
    7778     
    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   
    7987#else 
    8088#define PRINTF(x) if (NO)
     
    124132#else
    125133#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)
    126142#endif
    127143
Note: See TracChangeset for help on using the changeset viewer.