From a73263f27dffd3172bbd7ca6a66377c0d52193a0 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Mon, 20 Dec 2021 16:43:14 -0800 Subject: [PATCH] Log absolute_path instead of the Path object. --- voussoirkit/spinal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voussoirkit/spinal.py b/voussoirkit/spinal.py index 6769000..2d4671b 100644 --- a/voussoirkit/spinal.py +++ b/voussoirkit/spinal.py @@ -908,7 +908,7 @@ def walk( queue.append(path) while queue: current = queue.pop() - log.debug('Scanning %s.', current) + log.debug('Scanning %s.', current.absolute_path) current_rstrip = current.absolute_path.rstrip(os.sep) if yield_style is YIELD_STYLE_NESTED: