From 8efaa82391351d34096b1ade11c0124bf21e3a58 Mon Sep 17 00:00:00 2001 From: Nathan Kamm Date: Fri, 15 Nov 2019 15:57:07 -0800 Subject: [PATCH] Remove Debug Print Statement from plugin_enrichment_interface --- .../enrichment/interface/plugin_enrichment_interface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yahoo_panoptes/plugins/enrichment/interface/plugin_enrichment_interface.py b/yahoo_panoptes/plugins/enrichment/interface/plugin_enrichment_interface.py index 74d613bd..1ab51eff 100644 --- a/yahoo_panoptes/plugins/enrichment/interface/plugin_enrichment_interface.py +++ b/yahoo_panoptes/plugins/enrichment/interface/plugin_enrichment_interface.py @@ -183,8 +183,8 @@ def get_results(self): try: self._interface_enrichment_group.add_enrichment_set(PanoptesEnrichmentSet(str(index), enrichment_set)) except Exception as e: - self._logger.error(u'Error while adding enrichment set {} to enrichment group for the device {}: {} - {}'. - format(str(index), self.host, repr(e), enrichment_set)) + self._logger.error(u'Error while adding enrichment set {} to enrichment group for the device {}: {}'. + format(str(index), self.host, repr(e))) self._interface_enrichment_group_set.add_enrichment_group(self._interface_enrichment_group)