From 33940022821ec5e1c1766eb60ffd80013cb12771 Mon Sep 17 00:00:00 2001 From: Guyzmo Date: Thu, 26 May 2016 20:34:01 +0200 Subject: Changing warning to debug logging, to avoid warning showing off when nothing's wrong cf #444 Signed-off-by: Guyzmo --- git/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/remote.py b/git/remote.py index 92203588..88658c38 100644 --- a/git/remote.py +++ b/git/remote.py @@ -578,7 +578,7 @@ class Remote(LazyMixin, Iterable): msg += "length of progress lines %i should be equal to lines in FETCH_HEAD file %i\n" msg += "Will ignore extra progress lines or fetch head lines." msg %= (l_fil, l_fhi) - log.warn(msg) + log.debug(msg) if l_fil < l_fhi: fetch_head_info = fetch_head_info[:l_fil] else: -- cgit v1.2.1