From cfad85b30ee4e1a7c293346b328f5ebe362f5d61 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Mon, 13 Feb 2017 16:12:56 +0100 Subject: [PATCH] Log file object on db load --- src/Site/SiteStorage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Site/SiteStorage.py b/src/Site/SiteStorage.py index 69dab592..d45c75de 100644 --- a/src/Site/SiteStorage.py +++ b/src/Site/SiteStorage.py @@ -224,7 +224,7 @@ class SiteStorage(object): self.openDb() elif not config.disable_db and inner_path.endswith(".json") and self.has_db: # Load json file to db if config.verbose: - self.log.debug("Loading json file to db: %s" % inner_path) + self.log.debug("Loading json file to db: %s (file: %s)" % (inner_path, file)) try: self.updateDbFile(inner_path, file) except Exception, err: