Changeset 1426 for trunk/psLib/src/sys/psLogMsg.h
- Timestamp:
- Aug 9, 2004, 12:44:25 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psLogMsg.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLogMsg.h
r1407 r1426 12 12 * @author George Gusciora, MHPCC 13 13 * 14 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-08-0 7 00:06:06$14 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-08-09 22:44:25 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 30 30 /// In future versions, this procedure will take a character string as an 31 31 /// argument which can specify more general log destinations. 32 int psLogSetDestination(const char *dest // /< Specifies where to send messages.32 int psLogSetDestination(const char *dest ///< Specifies where to send messages. 33 33 ); 34 34 … … 38 38 /// Ie. higher values set by this procedure will cause more log messages to 39 39 /// be displayed. 40 int psLogSetLevel(int level // /< Specifies the system log level40 int psLogSetLevel(int level ///< Specifies the system log level 41 41 ); 42 42 … … 46 46 /// Deleting a letter from the string will cause the associated information 47 47 /// to not be logged. 48 void psLogSetFormat(const char *fmt // /< Specifies the system log format48 void psLogSetFormat(const char *fmt ///< Specifies the system log format 49 49 ); 50 50 … … 53 53 /// specified by a prior call to psLogSetLevel(). The message is specified 54 54 /// with a printf-stype string an arguments. 55 void psLogMsg(const char *name, // /< name of the log source56 int myLevel, // /< severity level of this log message57 const char *fmt, ... // /< printf-style format command55 void psLogMsg(const char *name, ///< name of the log source 56 int myLevel, ///< severity level of this log message 57 const char *fmt, ... ///< printf-style format command 58 58 ); 59 59 60 60 /// This procedure is functionally equivalent to psLogMsg(), except that 61 61 /// it takes a va_list as the message parameter, not a printf-style string. 62 void psLogMsgV(const char *name, // /< name of the log source63 int myLevel, // /< severity level of this log message64 const char *fmt, // /< printf-style format command65 va_list ap // /< varargs argument list62 void psLogMsgV(const char *name, ///< name of the log source 63 int myLevel, ///< severity level of this log message 64 const char *fmt, ///< printf-style format command 65 va_list ap ///< varargs argument list 66 66 ); 67 67
Note:
See TracChangeset
for help on using the changeset viewer.
