summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuyzmo <guyzmo+github@m0g.net>2016-05-26 20:34:01 +0200
committerGuyzmo <guyzmo+github@m0g.net>2016-05-26 20:39:01 +0200
commit33940022821ec5e1c1766eb60ffd80013cb12771 (patch)
treea76d0b412656de8a75fe0511a62c07f3eea93991
parent902679c47c3d1238833ac9c9fdbc7c0ddbedf509 (diff)
downloadgitpython-33940022821ec5e1c1766eb60ffd80013cb12771.tar.gz
Changing warning to debug logging, to avoid warning showing off when nothing's wrong
cf #444 Signed-off-by: Guyzmo <guyzmo+github@m0g.net>
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
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: