summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-11-15 16:52:59 +0100
committerAnton Khirnov <anton@khirnov.net>2020-11-15 16:52:59 +0100
commit38c78bd3c33068902347208bb15ad49b65570e9c (patch)
treeace77ffe3916e99d9668463757b8a4e18fb66c82
parent79c9c0747e876c0b97a4fb3fe91fa9825e462722 (diff)
plugins/link: use info log level for link creation
Forgotten in 7eabd28
-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)