From 4d5c7f992a7015f6c5e6d0051057120b8f0c382a Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 15 Nov 2020 15:07:30 +0100 Subject: messenger: rename lowinfo to verbose This is more standard terminology. --- dotbot/plugins/clean.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dotbot/plugins/clean.py') 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): -- cgit v1.2.3