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 c2793e5..e7f1561 100644
--- a/dotbot/plugins/clean.py
+++ b/dotbot/plugins/clean.py
@@ -28,7 +28,7 @@ class Clean(dotbot.Plugin):
recursive = targets[target].get('recursive', recursive)
success &= self._clean(target, force, recursive)
if success:
- self._log.info('All targets have been cleaned')
+ self._log.verbose('All targets have been cleaned')
else:
self._log.error('Some targets were not successfully cleaned')
return success
@@ -51,7 +51,7 @@ 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.verbose('Removing invalid link %s -> %s' % (path, points_at))
+ self._log.info('Removing invalid link %s -> %s' % (path, points_at))
os.remove(path)
else:
self._log.verbose('Link %s -> %s not removed.' % (path, points_at))