From 49a66b84cfecce2cf3efb14b86ce38c542e594a2 Mon Sep 17 00:00:00 2001 From: maartenbreddels Date: Fri, 8 Dec 2017 15:04:37 +0100 Subject: [PATCH] log.debug the paths that are used --- notebook/config_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/notebook/config_manager.py b/notebook/config_manager.py index 05f807164..5ff1c4187 100644 --- a/notebook/config_manager.py +++ b/notebook/config_manager.py @@ -72,6 +72,7 @@ class BaseJSONConfigManager(LoggingConfigurable): # put a json file somewhere in the a .d directory, while the # .json file is probably a user configuration. paths = sorted(glob.glob(pattern)) + paths + self.log.debug('Paths used for configuration of %s: \n\t%s', section_name, '\n\t'.join(paths)) data = {} for path in paths: if os.path.isfile(path):