From 189e15748a10b13a5ed36fd297bdf359a4931942 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sun, 8 Mar 2026 14:30:04 -0700 Subject: [PATCH] A little more loud logging. --- voussoirkit/spinal.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/voussoirkit/spinal.py b/voussoirkit/spinal.py index f5c98da..49724ab 100644 --- a/voussoirkit/spinal.py +++ b/voussoirkit/spinal.py @@ -283,6 +283,7 @@ def copy_directory( written_bytes = 0 for (source_file, destination_file) in walker: + log.loud(f'Working on file {source_file.absolute_path}.') if not source_file.is_file: log.warning('%s disappeared during directory copy.', source_file.absolute_path) continue @@ -482,6 +483,7 @@ def copy_file( ) if not should_overwrite: + log.loud(f'Don\'t need to overwrite {destination.absolute_path}.') return results if dry_run: @@ -489,6 +491,7 @@ def copy_file( return results if callback_pre_copy(source, destination, dry_run=dry_run) is BAIL: + log.loud('Bailing due to callback_pre_copy.') return results destination.parent.makedirs(exist_ok=True)