We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 533f516 + d34b28e commit 956695bCopy full SHA for 956695b
blockchainetl/jobs/exporters/kafka_exporter.py
@@ -33,7 +33,7 @@ def export_item(self, item):
33
item_type = item.get('type')
34
if item_type is not None and item_type in self.item_type_to_topic_mapping:
35
data = json.dumps(item).encode('utf-8')
36
- print(data)
+ logging.debug(data)
37
return self.producer.send(self.item_type_to_topic_mapping[item_type], value=data)
38
else:
39
logging.warning('Topic for item type "{}" is not configured.'.format(item_type))
0 commit comments