Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1322)

Unified Diff: git_cl.py

Issue 11418148: Add logging in git_cl::CMDupload (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698