From ef42c4c947ebb3a917dffade93acbe7642cb4095 Mon Sep 17 00:00:00 2001
From: Ger van Diepen <diepen@astron.nl>
Date: Wed, 21 Mar 2012 09:20:13 +0000
Subject: [PATCH] Task #2699 Removed debug print statements

---
 CEP/Imager/ImageLofar/src/addImagingInfo | 2 --
 1 file changed, 2 deletions(-)

diff --git a/CEP/Imager/ImageLofar/src/addImagingInfo b/CEP/Imager/ImageLofar/src/addImagingInfo
index 6818a107ae8..2f2142d9b15 100755
--- a/CEP/Imager/ImageLofar/src/addImagingInfo
+++ b/CEP/Imager/ImageLofar/src/addImagingInfo
@@ -21,7 +21,6 @@ def addSubTable (image, msName, subName, removeColumns=[]):
     if len(subNameOut) < 6  or  subNameOut[:6] != "LOFAR_":
         subNameOut = "LOFAR_" + subNameOut
     subtab = sel.copy (image.name() + "/" + subNameOut, deep=True)
-    print subtab.name()
     image.putkeyword ("ATTRGROUPS." + subNameOut, subtab)
     print "Added subtable", subNameOut, "containing", subtab.nrows(), "rows"
     subtab.close()
@@ -33,7 +32,6 @@ def addQualityTable (image):
     tab = pt.taql ("create table '" + image.name() + "/LOFAR_QUALITY' " + 
                    "QUALITY_MEASURE string, VALUE string, FLAG_ROW bool")
     tab.flush()
-    print tab.name()
     image.putkeyword ("ATTRGROUPS." + "LOFAR_QUALITY", tab)
     tab.close()
     print "Added subtable LOFAR_QUALITY containing 0 rows"
-- 
GitLab