Index: trunk/ippToPsps/jython/config.py
===================================================================
--- trunk/ippToPsps/jython/config.py	(revision 33500)
+++ trunk/ippToPsps/jython/config.py	(revision 33501)
@@ -8,5 +8,6 @@
 
 '''
-A class encapsulating the ippToPsps config file
+A class encapsulating a ippToPsps configuration. This information is stored in the 'config' table
+of the ipptopsps database, but there are some higher level config details in the 'settings.xml' file
 '''
 class Config(object):
@@ -27,9 +28,9 @@
         self.settingsDoc = ElementTree(file=self.settingsPath)
         self.logPath = self.settingsDoc.find("logPath").text
-
+        self.czarPlotsPath = self.settingsDoc.find("czarPlotsPath").text
 
         # this is the border (in degrees) that we place around any loading box of 
         # PS1 pointings to ensure we pull a large enough area out of DVO
-        self.BORDER = 1.6
+        self.BORDER = 1.65
         self.isLoaded = False
 
@@ -46,7 +47,4 @@
             self.logger.infoPair("Loading epoch", self.epoch)
             self.logger.infoPair("Data release", "%d" % self.dataRelease)
-            self.logger.infoBool("Test mode?", self.test)
-            self.logger.infoBool("Forcing?", self.force)
-            self.logger.infoBool("Reporting NULLS?", self.reportNulls)
             for batchType in self.batchTypes: self.logger.infoPair("Queuing batch type", batchType)
         except:
