Skip to content

Commit

Permalink
Make "unprocessed keys for batch operation" log at info level (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
bedge authored and danielhochman committed Nov 1, 2016
1 parent 03c0b3c commit c90c853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynamodb/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def commit(self):
elif DELETE_REQUEST in item:
delete_items.append(item.get(DELETE_REQUEST).get(KEY))
self.model.get_throttle().throttle()
log.debug("Resending %s unprocessed keys for batch operation", len(unprocessed_items))
log.info("Resending %s unprocessed keys for batch operation", len(unprocessed_items))
data = self.model._get_connection().batch_write_item(
put_items=put_items,
delete_items=delete_items
Expand Down

0 comments on commit c90c853

Please sign in to comment.