mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-31 20:26:40 +00:00
changed insufficiently reserved length for log message (#8152)
changed log message reserved length
This commit is contained in:
parent
411c763fb8
commit
0c1df415d7
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ def checkpoint_func():
|
|||
or (args.list_pruned and archive in to_delete)
|
||||
or (args.list_kept and archive not in to_delete)
|
||||
):
|
||||
list_logger.info(f"{log_message:<40} {formatter.format_item(archive, jsonline=False)}")
|
||||
list_logger.info(f"{log_message:<44} {formatter.format_item(archive, jsonline=False)}")
|
||||
pi.finish()
|
||||
if sig_int:
|
||||
# Ctrl-C / SIGINT: do not checkpoint (commit) again, we already have a checkpoint in this case.
|
||||
|
|
Loading…
Reference in a new issue