diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-30 00:49:38 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-30 01:36:24 +0200 |
commit | b114f3bbe50f50477778a0a13cf99c0cfee1392a (patch) | |
tree | 9c455681e928297388074df91e4db23f2e3e3f0b /git/cmd.py | |
parent | 842fb6852781fd74fdbc7b2762084e39c0317067 (diff) | |
download | gitpython-b114f3bbe50f50477778a0a13cf99c0cfee1392a.tar.gz |
ci: Capture logging for Popen() execute statements.
+ Collect all known commands
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -535,6 +535,7 @@ class Git(LazyMixin): cmd_not_found_exception = OSError # end handle + log.debug("Popen(%s, cwd=%s, universal_newlines=%s", command, cwd, universal_newlines) try: proc = Popen(command, env=env, |