Index: trunk/ippToPsps/jython/pslogger.py
===================================================================
--- trunk/ippToPsps/jython/pslogger.py	(revision 31933)
+++ trunk/ippToPsps/jython/pslogger.py	(revision 31979)
@@ -10,4 +10,14 @@
        self.error("%-40s%s" % (first, second))
 
+   def infoBool(self, first, bool):
+       if bool: str = "yes"
+       else: str = "no"
+       self.info("%-40s%s" % (first, str))
+
+   def errorBool(self, first, bool):
+       if bool: str = "yes"
+       else: str = "no"
+       self.error("%-40s%s" % (first, str))
+
    def infoSeparator(self):
        self.info("--------------------------------------------------------------------------")
