Index: /branches/pap_branch_050513/psLib/src/sys/psLogMsg.c
===================================================================
--- /branches/pap_branch_050513/psLib/src/sys/psLogMsg.c	(revision 3925)
+++ /branches/pap_branch_050513/psLib/src/sys/psLogMsg.c	(revision 3926)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-03-22 21:52:49 $
+ *  @version $Revision: 1.39.8.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-05-13 21:40:21 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -173,5 +173,5 @@
     NULL.
  *****************************************************************************/
-void psLogSetFormat(const char *fmt)
+bool psLogSetFormat(const char *fmt)
 {
     // assume nothing desired unless specified
@@ -184,5 +184,5 @@
     // if fmt is NULL, no logging is desired.
     if (fmt == NULL) {
-        return;
+        return true;   // No problems encountered in parsing
     }
 
@@ -224,5 +224,8 @@
     if (!logMsg) {
         psTrace("utils.logMsg", 1, "You must at least log error messages (You chose \"%s\")", fmt);
-    }
+        return false;
+    }
+
+    return true;   // No problems
 }
 
Index: /branches/pap_branch_050513/psLib/src/sysUtils/psLogMsg.c
===================================================================
--- /branches/pap_branch_050513/psLib/src/sysUtils/psLogMsg.c	(revision 3925)
+++ /branches/pap_branch_050513/psLib/src/sysUtils/psLogMsg.c	(revision 3926)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-03-22 21:52:49 $
+ *  @version $Revision: 1.39.8.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-05-13 21:40:21 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -173,5 +173,5 @@
     NULL.
  *****************************************************************************/
-void psLogSetFormat(const char *fmt)
+bool psLogSetFormat(const char *fmt)
 {
     // assume nothing desired unless specified
@@ -184,5 +184,5 @@
     // if fmt is NULL, no logging is desired.
     if (fmt == NULL) {
-        return;
+        return true;   // No problems encountered in parsing
     }
 
@@ -224,5 +224,8 @@
     if (!logMsg) {
         psTrace("utils.logMsg", 1, "You must at least log error messages (You chose \"%s\")", fmt);
-    }
+        return false;
+    }
+
+    return true;   // No problems
 }
 
