Skip to content

Commit 85fbcc4

Browse files
committed
Provide better error message when pushing records
1 parent 54290c5 commit 85fbcc4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

caso/messenger/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ def push_to_all(self, records):
5656
self.mgr.map_method("push", records)
5757
except Exception as e:
5858
# Capture exception so that we can continue working
59-
LOG.error(e)
59+
LOG.error("Something happeneded when pushing records.")
60+
LOG.exception(e)

0 commit comments

Comments
 (0)