From f449b83ee5d4f4dc28ccaa07933d6972efe45256 Mon Sep 17 00:00:00 2001 From: James Vasile Date: Sat, 9 Feb 2013 15:46:27 -0500 Subject: [PATCH] log the html root for debugging purposes --- plugin_mount.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin_mount.py b/plugin_mount.py index 94f4d2189..cf0f26880 100644 --- a/plugin_mount.py +++ b/plugin_mount.py @@ -67,6 +67,7 @@ class PagePlugin: def __init__(self, *args, **kwargs): """If cfg.html_root is none, then this is the html_root.""" if not cfg.html_root: + cfg.log('Setting html root to %s' % self.__class__.__name__) cfg.html_root = self def register_page(self, url):