Changeset 121 for trunk/src/logger.cc
- Timestamp:
- 06/15/13 17:47:57 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/logger.cc
r64 r121 21 21 22 22 // log level names 23 const char *log_level_names[] =23 static const char *log_level_names[] = 24 24 { 25 25 "NONE", … … 37 37 38 38 // log level names 39 const char *log_level_names_pad[] =39 static const char *log_level_names_pad[] = 40 40 { 41 41 "NONE ", … … 57 57 58 58 #if NV_PLATFORM == NV_WINDOWS 59 unsigned short log_color[] =59 static unsigned short log_color[] = 60 60 { 61 61 FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_INTENSITY, … … 72 72 }; 73 73 #else 74 const char *log_color[] =74 static const char *log_color[] = 75 75 { 76 76 "\33[37;1m",
Note: See TracChangeset
for help on using the changeset viewer.