summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dotbot/plugins/link.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotbot/plugins/link.py b/dotbot/plugins/link.py
index 5e2bd90..6e2850e 100644
--- a/dotbot/plugins/link.py
+++ b/dotbot/plugins/link.py
@@ -157,7 +157,7 @@ class Link(dotbot.Plugin):
# directory, and if source is relative, it will be relative to the
# destination directory
elif not self._exists(link_name) and (ignore_missing or self._exists(absolute_source)):
- self._log.verbose('Creating link %s -> %s' % (link_name, source))
+ self._log.info('Creating link %s -> %s' % (link_name, source))
if not dry_run:
try:
os.symlink(source, destination)