From d9aaefa350db38d328cb5a264427f252c97adbdc Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Thu, 7 Jun 2018 07:54:04 +0200 Subject: [PATCH] downgrade logging for #44 --- dotdrop/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/installer.py b/dotdrop/installer.py index 8f78113..ee4acd1 100644 --- a/dotdrop/installer.py +++ b/dotdrop/installer.py @@ -43,7 +43,7 @@ class Installer: dst = os.path.join(self.base, os.path.expanduser(dst)) if os.path.exists(dst): if os.path.realpath(dst) == os.path.realpath(src): - self.log.sub('ignoring "{}", link exists'.format(dst)) + self.log.dbg('ignoring "{}", link exists'.format(dst)) return [] if self.dry: self.log.dry('would remove {} and link to {}'.format(dst, src))