Skip to content

Commit 07fab3e

Browse files
committed
Removed debug logging from request_fetch
1 parent df6644c commit 07fab3e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

git_repo/services/ext/github.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,8 @@ def request_list(self, user, repo):
157157
def request_fetch(self, user, repo, request, pull=False):
158158
if pull:
159159
raise NotImplementedError('Pull operation on requests for merge are not yet supported')
160-
log.info('remotes: {}'.format(self.repository.remotes))
161160
try:
162161
for remote in self.repository.remotes:
163-
log.info('request_fetch, remote_name {}'.format(remote.name))
164162
if remote.name == self.name:
165163
local_branch_name = 'request/{}'.format(request)
166164
self.fetch(

0 commit comments

Comments
 (0)