Changeset 478 for trunk/psLib/src/sys/psLogMsg.h
- Timestamp:
- Apr 20, 2004, 12:39:01 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psLogMsg.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLogMsg.h
r477 r478 25 25 /// Logs a message 26 26 void psLogMsg(const char *name, ///< name of the log source 27 int myLevel, ///< severity level of this log message27 int myLevel, ///< severity level of this log message 28 28 const char *fmt, ...) ///< printf-style format command 29 29 ; … … 31 31 /// Logs a message from varargs 32 32 void p_psVLogMsg(const char *name, ///< name of the log source 33 int myLevel, ///< severity level of this log message33 int myLevel, ///< severity level of this log message 34 34 const char *fmt, ///< printf-style format command 35 va_list ap) ///< varargs argument list35 va_list ap) ///< varargs argument list 36 36 ; 37 37 38 38 /* \} */ // End of SystemGroup Functions 39 39 40 enum { PS_LOG_ABORT = 0, PS_LOG_ERROR, PS_LOG_WARN, PS_LOG_INFO }; ///< Status codes for log messages 40 ///< Status codes for log messages 41 enum { 42 PS_LOG_ABORT = 0, 43 PS_LOG_ERROR, 44 PS_LOG_WARN, 45 PS_LOG_INFO }; 41 46 42 enum { PS_LOG_NONE, PS_LOG_TO_STDERR, PS_LOG_TO_STDOUT }; ///< Destinations for log messages 47 ///< Destinations for log messages 48 enum { 49 PS_LOG_NONE, 50 PS_LOG_TO_STDERR, 51 PS_LOG_TO_STDOUT }; 43 52 44 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
