Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3394002

Browse files
committed
Changing warning to debug logging, to avoid warning showing off when nothing's wrong
cf gitpython-developers#444 Signed-off-by: Guyzmo <[email protected]>
1 parent 902679c commit 3394002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ def _get_fetch_info_from_stderr(self, proc, progress):
578578
msg += "length of progress lines %i should be equal to lines in FETCH_HEAD file %i\n"
579579
msg += "Will ignore extra progress lines or fetch head lines."
580580
msg %= (l_fil, l_fhi)
581-
log.warn(msg)
581+
log.debug(msg)
582582
if l_fil < l_fhi:
583583
fetch_head_info = fetch_head_info[:l_fil]
584584
else:

0 commit comments

Comments
 (0)