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 3aaa5cc commit eac844cCopy full SHA for eac844c
git_repo/repo.py
@@ -85,13 +85,15 @@
85
86
def main(args):
87
try:
88
+ if args['--verbose'] >= 5: # pragma: no cover
89
+ print(args)
90
if args['--verbose'] >= 4: # pragma: no cover
91
import http.client
92
http.client.HTTPConnection.debuglevel = 1
93
logging.getLogger("requests.packages.urllib3").setLevel(logging.DEBUG)
94
logging.getLogger("requests.packages.urllib3").propagate = True
95
if args['--verbose'] >= 3: # pragma: no cover
- print(args)
96
+ Git.GIT_PYTHON_TRACE = 'full'
97
if args['--verbose'] >= 2: # pragma: no cover
98
Git.GIT_PYTHON_TRACE = True
99
FORMAT = '> %(message)s'
0 commit comments