Index: git_cl.py |
diff --git a/git_cl.py b/git_cl.py |
index f65d11ce5c5c79d89a0c6558113523cbe37005fd..2a57a8a4776926fb90781b0dd9c0f1a7271f0b31 100755 |
--- a/git_cl.py |
+++ b/git_cl.py |
@@ -1200,7 +1200,9 @@ def RietveldUpload(options, args, cl): |
upload_args.extend(['--base_url', remote_url]) |
try: |
- issue, patchset = upload.RealMain(['upload'] + upload_args + args) |
+ upload_args = ['upload'] + upload_args + args |
+ logging.info('upload.RealMain(%s)', upload_args) |
+ issue, patchset = upload.RealMain(upload_args) |
except KeyboardInterrupt: |
sys.exit(1) |
except: |