summaryrefslogtreecommitdiff
path: root/dotbot/cli.py
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-11-15 15:14:14 +0100
committerAnton Khirnov <anton@khirnov.net>2020-11-15 15:14:14 +0100
commit7eabd2856753c73a818159e7cb3316148ca600dc (patch)
tree41c1ff8a88fb67532a1cfe5f41db3f862d8173e7 /dotbot/cli.py
parent4d5c7f992a7015f6c5e6d0051057120b8f0c382a (diff)
Tweak log levels.
Use info for changes performed (e.g. changes to the filesystem, code executed). Use verbose for "nothing to do" messages.
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: