From e47995407f4fb03335bff54b35caf11b5c083a55 Mon Sep 17 00:00:00 2001 From: Benjamin Motz Date: Sun, 17 Mar 2019 10:49:12 +0100 Subject: [PATCH] Raise reporting level for link creation I think that creation of links should be more important, as it modifies something on the filesystem. --- 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 9311124..3dca519 100644 --- a/dotbot/plugins/link.py +++ b/dotbot/plugins/link.py @@ -243,7 +243,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.info('Creating link %s -> %s' % (link_name, source)) success = True elif self._exists(link_name) and not self._is_link(link_name): self._log.warning(