Index: trunk/psLib/src/sys/psLogMsg.h
===================================================================
--- trunk/psLib/src/sys/psLogMsg.h	(revision 1407)
+++ trunk/psLib/src/sys/psLogMsg.h	(revision 1426)
@@ -12,6 +12,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-07 00:06:06 $
+ *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 22:44:25 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -30,5 +30,5 @@
 /// In future versions, this procedure will take a character string as an
 /// argument which can specify more general log destinations.
-int psLogSetDestination(const char *dest        // /< Specifies where to send messages.
+int psLogSetDestination(const char *dest        ///< Specifies where to send messages.
                        );
 
@@ -38,5 +38,5 @@
 /// Ie. higher values set by this procedure will cause more log messages to
 /// be displayed.
-int psLogSetLevel(int level     // /< Specifies the system log level
+int psLogSetLevel(int level     ///< Specifies the system log level
                  );
 
@@ -46,5 +46,5 @@
 /// Deleting a letter from the string will cause the associated information
 /// to not be logged.
-void psLogSetFormat(const char *fmt     // /< Specifies the system log format
+void psLogSetFormat(const char *fmt     ///< Specifies the system log format
                    );
 
@@ -53,15 +53,15 @@
 /// specified by a prior call to psLogSetLevel().  The message is specified
 /// with a printf-stype string an arguments.
-void psLogMsg(const char *name, // /< name of the log source
-              int myLevel,      // /< severity level of this log message
-              const char *fmt, ...      // /< printf-style format command
+void psLogMsg(const char *name, ///< name of the log source
+              int myLevel,      ///< severity level of this log message
+              const char *fmt, ...      ///< printf-style format command
              );
 
 /// This procedure is functionally equivalent to psLogMsg(), except that
 /// it takes a va_list as the message parameter, not a printf-style string.
-void psLogMsgV(const char *name,        // /< name of the log source
-               int myLevel,     // /< severity level of this log message
-               const char *fmt, // /< printf-style format command
-               va_list ap       // /< varargs argument list
+void psLogMsgV(const char *name,        ///< name of the log source
+               int myLevel,     ///< severity level of this log message
+               const char *fmt, ///< printf-style format command
+               va_list ap       ///< varargs argument list
               );
 
