From 89bdfc5975f4eb163d4db64f61478f8d9bcd1e11 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 7 Nov 2019 01:39:04 -0400 Subject: [PATCH] Add debug when loading env config file Signed-off-by: Roberto Rosario --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 5605895f04..838f4e5131 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -258,10 +258,12 @@ extlinks = { def _load_env_file(filename='../config.env'): + print('Loading env file: {}'.format(filename)) result = [] with open(filename) as file_object: for line in file_object: if not line.startswith('#'): + print('Found entry: {}'.format(line)) key, value = line.strip().split('=') result.append(('|{}|'.format(key), value))