Skip to content

Commit 06aada5

Browse files
logging typo
1 parent e211dc0 commit 06aada5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mongodb_consistent_backup/Rotate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def rotate(self):
5555
if self.max_days == 0 and self.max_backups == 0:
5656
logging.info("Backup rotation is disabled, skipping")
5757
return
58-
logging.info("Rotating backups (max_num=%i, max_days=%.2f)" % (self.max_backups, self.max_days))
58+
logging.info("Rotating backups (max_backups=%i, max_days=%.2f)" % (self.max_backups, self.max_days))
5959
kept_backups = 1
6060
now = int(time())
6161
for ts in sorted(self.backups.iterkeys(), reverse=True):

0 commit comments

Comments
 (0)