summaryrefslogtreecommitdiff
path: root/dotbot
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2018-04-13 08:49:09 -0400
committerAnish Athalye <me@anishathalye.com>2018-04-13 08:49:09 -0400
commit2f4cc0d9cb70235e7c5820dc4e7dd89b1d375fb5 (patch)
treeb2545b0ca9eb6a7a141a898b0a9d15896210a90a /dotbot
parenta517c4c5d0b6bdd8ab3a62f3c6c3f38837354bde (diff)
parent972e80f18850d0cd45f22d2a4c14320f3cd204c6 (diff)
Merge branch 'glob'
Diffstat (limited to 'dotbot')
-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)