summaryrefslogtreecommitdiff
path: root/dotbot/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/cli.py')
-rw-r--r--dotbot/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotbot/cli.py b/dotbot/cli.py
index 32db016..0795d40 100644
--- a/dotbot/cli.py
+++ b/dotbot/cli.py
@@ -100,7 +100,7 @@ def main():
dispatcher = Dispatcher(base_directory, only=options.only, skip=options.skip)
success = dispatcher.dispatch(tasks)
if success:
- log.info('\n==> All tasks executed successfully')
+ log.verbose('\n==> All tasks executed successfully')
else:
raise DispatchError('\n==> Some tasks were not executed successfully')
except (ReadingError, DispatchError) as e: