changeset 539:9093618aea08

import: Add some debug logging.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 31 Jul 2015 00:29:14 -0700
parents 423f06934358
children 233234e02816
files piecrust/importing/base.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/piecrust/importing/base.py	Wed Jul 29 23:51:28 2015 -0700
+++ b/piecrust/importing/base.py	Fri Jul 31 00:29:14 2015 -0700
@@ -57,6 +57,7 @@
             for fn in filenames:
                 full_fn = os.path.join(dirpath, fn)
                 rel_fn = os.path.join(rel_dirpath, fn)
+                logger.debug("Importing file: %s" % rel_fn)
                 self._importFile(full_fn, rel_fn, *args, **kwargs)