# HG changeset patch # User Ludovic Chabant # Date 1438327754 25200 # Node ID 9093618aea08210a5a59a1497c7eda2afc359f7e # Parent 423f06934358783cef281ba4e23697810d645c90 import: Add some debug logging. diff -r 423f06934358 -r 9093618aea08 piecrust/importing/base.py --- 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)