summaryrefslogtreecommitdiff
path: root/dotbot/dispatcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/dispatcher.py')
-rw-r--r--dotbot/dispatcher.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/dotbot/dispatcher.py b/dotbot/dispatcher.py
index cc07435..d1a4f95 100644
--- a/dotbot/dispatcher.py
+++ b/dotbot/dispatcher.py
@@ -30,10 +30,11 @@ class Dispatcher(object):
try:
success &= plugin.handle(action, task[action])
handled = True
- except Exception:
+ except Exception as err:
self._log.error(
'An error was encountered while executing action %s' %
action)
+ self._log.debug(err)
if not handled:
success = False
self._log.error('Action %s not handled' % action)