mirror of
1
0
Fork 0

Raise reporting level for link creation

I think that creation of links should be more important, as it
modifies something on the filesystem.
This commit is contained in:
Benjamin Motz 2019-03-17 10:49:12 +01:00
parent 2ecb3ce35d
commit e47995407f
1 changed files with 1 additions and 1 deletions

View File

@ -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(