summaryrefslogtreecommitdiff
path: root/dotbot/plugins/clean.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/clean.py
parent5294594f5aa9c3affd0d656ba6843c1c0b0bce60 (diff)
messenger: rename lowinfo to verbose
This is more standard terminology.
Diffstat (limited to 'dotbot/plugins/clean.py')
-rw-r--r--dotbot/plugins/clean.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotbot/plugins/clean.py b/dotbot/plugins/clean.py
index 09b11d8..c2793e5 100644
--- a/dotbot/plugins/clean.py
+++ b/dotbot/plugins/clean.py
@@ -51,10 +51,10 @@ class Clean(dotbot.Plugin):
if not os.path.exists(path) and os.path.islink(path):
points_at = os.path.join(os.path.dirname(path), os.readlink(path))
if self._in_directory(path, self._context.base_directory()) or force:
- self._log.lowinfo('Removing invalid link %s -> %s' % (path, points_at))
+ self._log.verbose('Removing invalid link %s -> %s' % (path, points_at))
os.remove(path)
else:
- self._log.lowinfo('Link %s -> %s not removed.' % (path, points_at))
+ self._log.verbose('Link %s -> %s not removed.' % (path, points_at))
return True
def _in_directory(self, path, directory):