I'm trying to implement Python's logging feature in a Python script that uses Neobolt and Neo4J's Python driver but I get the following error:
Exception ignored in:
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/n...
This is the code that calls my logger:
for relation in all_relations:
start = datetime.datetime.now()
neo4j_datastore.addRelationsByRules(relation)
end = datetime.datetime.now()
minutes, seconds == compute_time(start,...