Index: /branches/eam_branches/ipp-20121219/ippToPsps/jython/ipptopsps.py
===================================================================
--- /branches/eam_branches/ipp-20121219/ippToPsps/jython/ipptopsps.py	(revision 35087)
+++ /branches/eam_branches/ipp-20121219/ippToPsps/jython/ipptopsps.py	(revision 35088)
@@ -45,5 +45,4 @@
         # argv[1] -> self.skychunk.name
         self.skychunk = Skychunk(self.logger)
-        print "here... "
 
         # create connection to databases database
@@ -54,12 +53,8 @@
             raise
 
-        print "here... "
-
         self.checkClientStatus()
-        print "here... "
 
         # catch Ctrl-C signal
         signal.signal(signal.SIGINT, self.signal_handler)
-        print "here... "
 
         # title for log
@@ -69,5 +64,4 @@
         self.logger.infoPair("PID", "%d" % self.PID)
         self.logger.infoPair("Skychunk", self.skychunk.name)
-        print "here... "
 
     '''
@@ -118,17 +112,10 @@
     def refreshSkychunk(self):
 
-        print "refresh... "
-        print "self.skychunk.createNewSkychunk:  ", self.skychunk.createNewSkychunk
-
         # new skychunk?
         if self.skychunk.createNewSkychunk: 
-            print "self.skychunk.createNewSkychunk:  ", self.skychunk.createNewSkychunk
             self.ippToPspsDb.editSkychunk()
-            print "self.skychunk.createNewSkychunk:  ", self.skychunk.createNewSkychunk
             self.ippToPspsDb.setSkychunkForThisClient(self.skychunk.name, self.HOST, self.PID)
-            print "self.skychunk.createNewSkychunk:  ", self.skychunk.createNewSkychunk
             self.skychunk.createNewSkychunk = False
 
-        print "refresh... "
         # if we are rotating skychunks, then look for next active one in list
         if self.skychunk.rotateSkychunks:
@@ -146,5 +133,4 @@
             self.ippToPspsDb.setSkychunkForThisClient(newSkychunk, self.HOST, self.PID)
 
-        print "refresh... "
         return self.ippToPspsDb.readSkychunk(self.HOST, self.PID)
 
@@ -154,8 +140,6 @@
     def checkClientStatus(self):
 
-        print "stat... "
         self.ippToPspsDb.updateClient(self.config.programName, self.HOST, self.PID)
 
-        print "stat... "
         if self.ippToPspsDb.isKilled(self.HOST, self.PID): 
             self.exitProgram("killed via Db")
@@ -163,8 +147,6 @@
         # this loop pauses the process if we have no skychunk or we have set it to pause
         firstTimeIn = True
-        print "stat... "
         while not self.refreshSkychunk() or self.ippToPspsDb.isPaused(self.HOST, self.PID):
 
-            print "stat... "
             self.ippToPspsDb.updateClient(self.config.programName, self.HOST, self.PID)
             if self.ippToPspsDb.isKilled(self.HOST, self.PID): 
@@ -173,6 +155,4 @@
             firstTimeIn = False
             time.sleep(self.PAUSEPERIOD)
-
-        print "stat done... "
 
 
