summaryrefslogtreecommitdiff
path: root/dotbot/dispatcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/dispatcher.py')
-rw-r--r--dotbot/dispatcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotbot/dispatcher.py b/dotbot/dispatcher.py
index 10e4293..f809bef 100644
--- a/dotbot/dispatcher.py
+++ b/dotbot/dispatcher.py
@@ -24,7 +24,7 @@ class Dispatcher(object):
for action in task:
if self._only is not None and action not in self._only \
or self._skip is not None and action in self._skip:
- self._log.info('Skipping action %s' % action)
+ self._log.verbose('Skipping action %s' % action)
continue
handled = False
if action == 'defaults':