summaryrefslogtreecommitdiff
path: root/alot/settings
diff options
context:
space:
mode:
authorJulian Mehne <julian.mehne@posteo.de>2018-01-21 19:24:44 +0100
committerJulian Mehne <julian.mehne@posteo.de>2018-01-21 20:10:09 +0100
commit2282e40837cd95f7dc7f0837a7b45e440f89dfa7 (patch)
tree43f9a067a332a249e4bd95e573b5c772db6e405e /alot/settings
parent0935ccfd5c8cd00dd7b55a06133c6b5cf6368668 (diff)
Improve logging messages.
Diffstat (limited to 'alot/settings')
-rw-r--r--alot/settings/manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/settings/manager.py b/alot/settings/manager.py
index 99954639..6f1d01ca 100644
--- a/alot/settings/manager.py
+++ b/alot/settings/manager.py
@@ -98,12 +98,12 @@ class SettingsManager(object):
self._bindings.merge(newbindings)
tempdir = self._process_xdg_default('template_dir', 'alot/templates')
- logging.debug(tempdir)
+ logging.debug('template directory: `{}`'.format(tempdir))
# themes
themestring = newconfig['theme']
themes_dir = self._process_xdg_default('themes_dir', 'alot/themes')
- logging.debug(themes_dir)
+ logging.debug('themes directory: `{}`'.format(themes_dir))
# if config contains theme string use that
data_dirs = [os.path.join(d, 'alot/themes') for d in DATA_DIRS]