summaryrefslogtreecommitdiff
path: root/dotbot/plugins/clean.py
diff options
context:
space:
mode:
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):