Index: /trunk/psLib/src/sys/psError.c
===================================================================
--- /trunk/psLib/src/sys/psError.c	(revision 496)
+++ /trunk/psLib/src/sys/psError.c	(revision 497)
@@ -10,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-21 21:07:30 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-04-21 21:14:41 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -65,5 +65,5 @@
 
     // Call logging function with PS_LOG_ERROR level
-    p_psVLogMsg(name, PS_LOG_ERROR, fmt, argPtr);
+    psVLogMsg(name, PS_LOG_ERROR, fmt, argPtr);
 
     // Clean up stack after variable argument has been used
Index: /trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- /trunk/psLib/src/sys/psLogMsg.c	(revision 496)
+++ /trunk/psLib/src/sys/psLogMsg.c	(revision 497)
@@ -21,10 +21,10 @@
 static int logLevel = PS_LOG_INFO; // log all messages at this or above
 /*****************************************************************************
-    psSetLogLevel(): Set the current log level and return old level.
-    Input:
+psSetLogLevel(): Set the current log level and return old level.
+Input:
  level (int): the new log level.
-    Output:
+Output:
  none
-    Return:
+Return:
  The old log level.
  *****************************************************************************/
@@ -46,11 +46,11 @@
 
 /*****************************************************************************
-    psSetLogDestination(): sets the destination where log messages will be
+psSetLogDestination(): sets the destination where log messages will be
  sent to.
-    Input:
+Input:
  dest (int): the new log destination
-    Output:
+Output:
  None.
-    Return:
+Return:
  An integer specifying the old log destination.
  *****************************************************************************/
@@ -131,5 +131,5 @@
             // GUS: figure out the psError() format:
             //     psError(__func__, PS_ERR_UNKNOWN, 1,
-            //                   "Unknown logging keyword %c", *ptr);
+            //            "Unknown logging keyword %c", *ptr);
             break;
         }
@@ -154,5 +154,5 @@
 #endif
 /*****************************************************************************
-    p_psVLogMsg(): This routine sends the message, which is a printf style
+    psVLogMsg(): This routine sends the message, which is a printf style
  string specified in the "..." argument, to the current message log
  destination with the severity specified by the "level" argument.
@@ -161,5 +161,5 @@
  level
  fmt
- app_psVLogMsg
+ ap
     Output:
  none
@@ -167,8 +167,8 @@
  NULL.
  *****************************************************************************/
-void p_psVLogMsg(const char *name,
-                 int level,
-                 const char *fmt,
-                 va_list ap)
+void psVLogMsg(const char *name,
+               int level,
+               const char *fmt,
+               va_list ap)
 {
     static int first = 1;
@@ -304,5 +304,5 @@
 
     va_start(ap, fmt);
-    p_psVLogMsg(name, level, fmt, ap);
+    psVLogMsg(name, level, fmt, ap);
     va_end(ap);
 }
Index: /trunk/psLib/src/sys/psLogMsg.h
===================================================================
--- /trunk/psLib/src/sys/psLogMsg.h	(revision 496)
+++ /trunk/psLib/src/sys/psLogMsg.h	(revision 497)
@@ -25,14 +25,14 @@
 
 /// Logs a message
-void psLogMsg(const char *name,  ///< name of the log source
-              int myLevel, ///< severity level of this log message
+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
 ;
 
 /// Logs a message from varargs
-void p_psVLogMsg(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 psVLogMsg(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
 ;
 
Index: /trunk/psLib/src/sysUtils/psError.c
===================================================================
--- /trunk/psLib/src/sysUtils/psError.c	(revision 496)
+++ /trunk/psLib/src/sysUtils/psError.c	(revision 497)
@@ -10,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-21 21:07:30 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-04-21 21:14:41 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -65,5 +65,5 @@
 
     // Call logging function with PS_LOG_ERROR level
-    p_psVLogMsg(name, PS_LOG_ERROR, fmt, argPtr);
+    psVLogMsg(name, PS_LOG_ERROR, fmt, argPtr);
 
     // Clean up stack after variable argument has been used
Index: /trunk/psLib/src/sysUtils/psLogMsg.c
===================================================================
--- /trunk/psLib/src/sysUtils/psLogMsg.c	(revision 496)
+++ /trunk/psLib/src/sysUtils/psLogMsg.c	(revision 497)
@@ -21,10 +21,10 @@
 static int logLevel = PS_LOG_INFO; // log all messages at this or above
 /*****************************************************************************
-    psSetLogLevel(): Set the current log level and return old level.
-    Input:
+psSetLogLevel(): Set the current log level and return old level.
+Input:
  level (int): the new log level.
-    Output:
+Output:
  none
-    Return:
+Return:
  The old log level.
  *****************************************************************************/
@@ -46,11 +46,11 @@
 
 /*****************************************************************************
-    psSetLogDestination(): sets the destination where log messages will be
+psSetLogDestination(): sets the destination where log messages will be
  sent to.
-    Input:
+Input:
  dest (int): the new log destination
-    Output:
+Output:
  None.
-    Return:
+Return:
  An integer specifying the old log destination.
  *****************************************************************************/
@@ -131,5 +131,5 @@
             // GUS: figure out the psError() format:
             //     psError(__func__, PS_ERR_UNKNOWN, 1,
-            //                   "Unknown logging keyword %c", *ptr);
+            //            "Unknown logging keyword %c", *ptr);
             break;
         }
@@ -154,5 +154,5 @@
 #endif
 /*****************************************************************************
-    p_psVLogMsg(): This routine sends the message, which is a printf style
+    psVLogMsg(): This routine sends the message, which is a printf style
  string specified in the "..." argument, to the current message log
  destination with the severity specified by the "level" argument.
@@ -161,5 +161,5 @@
  level
  fmt
- app_psVLogMsg
+ ap
     Output:
  none
@@ -167,8 +167,8 @@
  NULL.
  *****************************************************************************/
-void p_psVLogMsg(const char *name,
-                 int level,
-                 const char *fmt,
-                 va_list ap)
+void psVLogMsg(const char *name,
+               int level,
+               const char *fmt,
+               va_list ap)
 {
     static int first = 1;
@@ -304,5 +304,5 @@
 
     va_start(ap, fmt);
-    p_psVLogMsg(name, level, fmt, ap);
+    psVLogMsg(name, level, fmt, ap);
     va_end(ap);
 }
Index: /trunk/psLib/src/sysUtils/psLogMsg.h
===================================================================
--- /trunk/psLib/src/sysUtils/psLogMsg.h	(revision 496)
+++ /trunk/psLib/src/sysUtils/psLogMsg.h	(revision 497)
@@ -25,14 +25,14 @@
 
 /// Logs a message
-void psLogMsg(const char *name,  ///< name of the log source
-              int myLevel, ///< severity level of this log message
+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
 ;
 
 /// Logs a message from varargs
-void p_psVLogMsg(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 psVLogMsg(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
 ;
 
