From 043ac5a5108ad4e956cd882f02ff1b8ab2a53c54 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Thu, 2 May 2019 17:17:00 +0200 Subject: [PATCH] Log renaming --- src/Content/ContentManager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Content/ContentManager.py b/src/Content/ContentManager.py index f9eca61b..51717fee 100644 --- a/src/Content/ContentManager.py +++ b/src/Content/ContentManager.py @@ -151,6 +151,7 @@ class ContentManager(object): deleted, renamed = self.getFileChanges(old_files, new_files) for relative_path_old, relative_path_new in renamed.items(): + self.log.debug("Renaming: %s -> %s" % (relative_path_old, relative_path_new)) if relative_path_new in new_content.get("files_optional", {}): self.optionalRenamed(content_inner_dir + relative_path_old, content_inner_dir + relative_path_new) if self.site.storage.isFile(relative_path_old):