Skip to content

Commit 06ea4a0

Browse files
committed
Merge pull request #445 from guyzmo/got_rid_of_warning
Changing warning to debug logging, to avoid warning showing off when nothing's wrong
2 parents 902679c + 3394002 commit 06ea4a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎git/remote.py

+1-1
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)