10000 issue #63 - revert logging additions · guyzmo/python-gitlab@f9654cd · GitHub
[go: up one dir, main page]

Skip to content

Commit f9654cd

Browse files
committed
issue python-gitlab#63 - revert logging additions
1 parent 33ceed6 commit f9654cd

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

gitlab/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
import requests
2727
import six
2828

29-
import logging
30-
logger = logging.getLogger(__name__)
31-
3229
__title__ = 'python-gitlab'
3330
__version__ = '0.9.1'
3431
__author__ = 'Gauvain Pocentek'
@@ -352,7 +349,6 @@ def list(self, obj_class, **kwargs):
352349
if 'next' in r.links and 'url' in r.links['next']:
353350
args = kwargs.copy()
354351
args['next_url'] = r.links['next']['url']
355-
logger.debug("Iterating results 'next' link: %s", args['next_url'])
356352
results.extend(self.list(obj_class, **args))
357353
return results
358354
else:

0 commit comments

Comments
 (0)
0