From 503b35924e55a85ab23712098eb4f7fb0c76b4d9 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 9 Aug 2023 22:30:43 +0200 Subject: [PATCH] logging --- dotdrop/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotdrop/utils.py b/dotdrop/utils.py index 401998f..28e817e 100644 --- a/dotdrop/utils.py +++ b/dotdrop/utils.py @@ -304,6 +304,9 @@ def _cp(src, dst, ignore_func=None, debug=False): return if not os.path.isfile(src): # ignore special files + if debug: + LOG.dbg(f'ignore special file \"{src}\"', + force=True) return dstdir = os.path.dirname(dst) if debug: