summaryrefslogtreecommitdiff
path: root/dotbot/plugins/shell.py
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-11-15 15:07:30 +0100
committerAnton Khirnov <anton@khirnov.net>2020-11-15 15:07:30 +0100
commit4d5c7f992a7015f6c5e6d0051057120b8f0c382a (patch)
tree4ba2455c631ad9ca1db1c07bd58cd89be35ba2f7 /dotbot/plugins/shell.py
parent5294594f5aa9c3affd0d656ba6843c1c0b0bce60 (diff)
messenger: rename lowinfo to verbose
This is more standard terminology.
Diffstat (limited to 'dotbot/plugins/shell.py')
-rw-r--r--dotbot/plugins/shell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/dotbot/plugins/shell.py b/dotbot/plugins/shell.py
index 3092f20..c1575ff 100644
--- a/dotbot/plugins/shell.py
+++ b/dotbot/plugins/shell.py
@@ -42,11 +42,11 @@ class Shell(dotbot.Plugin):
cmd = item
msg = None
if msg is None:
- self._log.lowinfo(cmd)
+ self._log.verbose(cmd)
elif quiet:
- self._log.lowinfo('%s' % msg)
+ self._log.verbose('%s' % msg)
else:
- self._log.lowinfo('%s [%s]' % (msg, cmd))
+ self._log.verbose('%s [%s]' % (msg, cmd))
ret = dotbot.util.shell_command(
cmd,
cwd=self._context.base_directory(),