Skip to content

Commit

Permalink
backup creation logging message tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Fallen-Breath committed Feb 24, 2024
1 parent 54df497 commit 2483540
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion prime_backup/action/create_backup_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,10 @@ def run(self) -> BackupInfo:
targets=scan_result.root_targets,
tags=self.tags.to_dict(),
)
self.logger.info('Creating backup {} on {}'.format(backup, scan_result.root_targets))
self.logger.info('Creating backup for {} at path {!r}, timestamp {!r}, creator {!r}, comment {!r}, tags {!r}'.format(
scan_result.root_targets, self.__source_path.as_posix(),
backup.timestamp, backup.creator, backup.comment, backup.tags,
))

if self.config.get_effective_concurrency() > 1:
self.__pre_calculate_hash(session, scan_result)
Expand Down

0 comments on commit 2483540

Please sign in to comment.