summaryrefslogtreecommitdiff
path: root/dotbot/plugins/link.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/plugins/link.py')
-rw-r--r--dotbot/plugins/link.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/dotbot/plugins/link.py b/dotbot/plugins/link.py
index 6f2b562..45b893f 100644
--- a/dotbot/plugins/link.py
+++ b/dotbot/plugins/link.py
@@ -48,7 +48,7 @@ class Link(dotbot.Plugin):
else:
path = self._default_source(destination, source)
if test is not None and not self._test_success(test):
- self._log.lowinfo('Skipping %s' % destination)
+ self._log.verbose('Skipping %s' % destination)
continue
path = os.path.expandvars(os.path.expanduser(path))
if use_glob:
@@ -74,7 +74,7 @@ class Link(dotbot.Plugin):
success &= self._delete(path, destination, relative, canonical_path, force)
success &= self._link(path, destination, relative, canonical_path, ignore_missing)
else:
- self._log.lowinfo("Globs from '" + path + "': " + str(glob_results))
+ self._log.verbose("Globs from '" + path + "': " + str(glob_results))
glob_base = path[:glob_star_loc]
for glob_full_item in glob_results:
glob_item = glob_full_item[len(glob_base):]
@@ -152,7 +152,7 @@ class Link(dotbot.Plugin):
self._log.warning('Failed to create directory %s' % parent)
success = False
else:
- self._log.lowinfo('Creating directory %s' % parent)
+ self._log.verbose('Creating directory %s' % parent)
return success
def _delete(self, source, path, relative, canonical_path, force):
@@ -180,7 +180,7 @@ class Link(dotbot.Plugin):
success = False
else:
if removed:
- self._log.lowinfo('Removing %s' % path)
+ self._log.verbose('Removing %s' % path)
return success
def _relative_path(self, source, destination):
@@ -218,7 +218,7 @@ class Link(dotbot.Plugin):
except OSError:
self._log.warning('Linking failed %s -> %s' % (link_name, source))
else:
- self._log.lowinfo('Creating link %s -> %s' % (link_name, source))
+ self._log.verbose('Creating link %s -> %s' % (link_name, source))
success = True
elif self._exists(link_name) and not self._is_link(link_name):
self._log.warning(
@@ -236,6 +236,6 @@ class Link(dotbot.Plugin):
self._log.warning('Nonexistent source for %s : %s' %
(link_name, source))
else:
- self._log.lowinfo('Link exists %s -> %s' % (link_name, source))
+ self._log.verbose('Link exists %s -> %s' % (link_name, source))
success = True
return success