Changeset 8729 for code/trunk/src/libraries/util/Debug.h
- Timestamp:
- Jul 4, 2011, 2:47:44 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/libraries/util/Debug.h
r7401 r8729 83 83 #ifdef ORXONOX_RELEASE 84 84 const int hardDebugLevel = OutputLevel::Verbose; 85 #elif defined(NDEBUG)86 const int hardDebugLevel = OutputLevel::Verbose;87 85 #else 88 86 //! Maximum level for debug output that should be even processed at run time … … 125 123 orxonox::OutputHandler::getOutStream(level) 126 124 125 /** Logs debug output: You can use DOUT exactly like @c std::cout. 126 Use this macro to produce temporary debug output that will be removed later on. 127 The console output shall have a special colour if available. 128 */ 129 #define DOUT orxonox::OutputHandler::getOutStream(-1) << "+++ " 130 127 131 #endif /* _Util_Debug_H__ */
Note: See TracChangeset
for help on using the changeset viewer.