Index: /trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- /trunk/psLib/src/sys/psLogMsg.c	(revision 4951)
+++ /trunk/psLib/src/sys/psLogMsg.c	(revision 4952)
@@ -12,6 +12,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-09-07 00:15:48 $
+ *  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-07 00:36:12 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -144,5 +144,5 @@
     */
     /*
-     
+
         if (strcmp(protocol, "dest") == 0) {
             if (strcmp(location, "stderr") == 0) {
@@ -165,5 +165,5 @@
         } else if (strcmp(protocol, "file") == 0) {
             FILE *file = fopen(location, "w");
-     
+
             if (file == NULL) {
                 psError(PS_ERR_IO, true, PS_ERRORTEXT_psLogMsg_OPEN_FILE_FAILED,
@@ -195,5 +195,5 @@
     NULL.
  *****************************************************************************/
-void psLogSetFormat(const char *format)
+bool psLogSetFormat(const char *format)
 {
     // assume none.
@@ -206,5 +206,5 @@
     // if fmt is NULL, no logging is desired.
     if (format == NULL) {
-        return;
+        return false;
     }
 
@@ -241,5 +241,5 @@
             psError(PS_ERR_BAD_PARAMETER_VALUE, true,
                     PS_ERRORTEXT_psLogMsg_UNKNOWN_KEY, *ptr);
-            break;
+            return false;
         }
     }
@@ -248,5 +248,7 @@
     if (!logMsg) {
         psTrace("utils.logMsg", 1, "You must at least log error messages (You chose \"%s\")", format);
-    }
+
+    }
+    return true;
 }
 
Index: /trunk/psLib/src/sys/psLogMsg.h
===================================================================
--- /trunk/psLib/src/sys/psLogMsg.h	(revision 4951)
+++ /trunk/psLib/src/sys/psLogMsg.h	(revision 4952)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-09-07 00:15:48 $
+ *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-07 00:36:12 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -54,6 +54,8 @@
  *  to not be logged.  This procedure does not alter the order in which
  *  the messages are displayed.
+ *
+ *  @return bool:       True if successful, otherwise false.
  */
-void psLogSetFormat(
+bool psLogSetFormat(
     const char *format                 ///< Specifies the system log format
 );
