Index: trunk/ippToPsps/jython/pslogger.py
===================================================================
--- trunk/ippToPsps/jython/pslogger.py	(revision 35417)
+++ trunk/ippToPsps/jython/pslogger.py	(revision 38973)
@@ -11,8 +11,8 @@
    This will default to stout and no file output
    '''
-   def setup(self, programName, basePath, skychunkName, host, pid, stdout=1, sendToFile=0):
+   def setup(self, programName, basePath, skychunkName, host, pid, loggerLevel, stdout=1, sendToFile=0):
 
        formatter = logging.Formatter('%(asctime)s.%(msecs)03d | %(levelname)7s | %(message)s', '%Y-%m-%d %H:%M:%S')
-       self.setLevel(logging.INFO)
+       self.setLevel(loggerLevel)
 
        if sendToFile:
@@ -34,12 +34,15 @@
        if sendToFile: print "Writing log to: " + FULLPATH
 
+   def debugPair(self, first, second):
+       self.debug("%-40s%s" % (first, second))
+
    def infoPair(self, first, second):
        self.info("%-40s%s" % (first, second))
 
+   def warningPair(self, first, second):
+       self.warning("%-40s%s" % (first, second))
+
    def errorPair(self, first, second):
        self.error("%-40s%s" % (first, second))
-
-   def debugPair(self, first, second):
-       self.debug("%-40s%s" % (first, second))
 
    def infoTitle(self, str):
