From 38c78bd3c33068902347208bb15ad49b65570e9c Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 15 Nov 2020 16:52:59 +0100 Subject: plugins/link: use info log level for link creation Forgotten in 7eabd28 --- dotbot/plugins/link.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3