Index: trunk/psLib/src/sysUtils/psLogMsg.c
===================================================================
--- trunk/psLib/src/sysUtils/psLogMsg.c	(revision 494)
+++ 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);
 }
