We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6650830 commit 7b72042Copy full SHA for 7b72042
github2gitlab/main.py
@@ -21,6 +21,7 @@
21
import git
22
import gitdb
23
import hashlib
24
+from http.client import HTTPConnection
25
import json
26
import logging
27
import os
@@ -81,9 +82,11 @@ def __init__(self, args):
81
82
83
if self.args.verbose:
84
level = logging.DEBUG
85
+ HTTPConnection.debuglevel = 1
86
else:
87
level = logging.INFO
88
89
+ logging.getLogger("urllib3").setLevel(level)
90
logging.getLogger('github2gitlab').setLevel(level)
91
92
self.tmpdir = "/tmp"
0 commit comments