Skip to content

Commit c90c853

Browse files
bedgedanielhochman
authored andcommitted
Make "unprocessed keys for batch operation" log at info level (#180)
1 parent 03c0b3c commit c90c853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pynamodb/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def commit(self):
128128
elif DELETE_REQUEST in item:
129129
delete_items.append(item.get(DELETE_REQUEST).get(KEY))
130130
self.model.get_throttle().throttle()
131-
log.debug("Resending %s unprocessed keys for batch operation", len(unprocessed_items))
131+
log.info("Resending %s unprocessed keys for batch operation", len(unprocessed_items))
132132
data = self.model._get_connection().batch_write_item(
133133
put_items=put_items,
134134
delete_items=delete_items

0 commit comments

Comments
 (0)