Changeset 875 for cpp/common/log.h
- Timestamp:
- 05/06/19 13:14:56 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/log.h
r874 r875 20 20 21 21 //level (importance) of a message 22 #define LOG_MIN LOG_DEBUG 22 23 #define LOG_DEBUG -1 //debugging information, not needed for final users 23 24 #define LOG_INFO 0 //information … … 25 26 #define LOG_ERROR 2 //uncorrected error, can cause malfunction 26 27 #define LOG_CRITICAL 3 //serious error, causes side effects. User should save what can be saved and restart the application 28 #define LOG_MAX LOG_CRITICAL 27 29 28 30 #endif
Note: See TracChangeset
for help on using the changeset viewer.