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

Unified Diff: gclient_utils.py

Issue 344004: Make 'gclient update' and 'gclient status' quieter by default - they don't... (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/depot_tools/
Patch Set: Created 11 years, 2 months 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 | « gclient_scm.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
===================================================================
--- gclient_utils.py (revision 30264)
+++ gclient_utils.py (working copy)
@@ -214,6 +214,10 @@
in_line = ""
while in_byte:
if in_byte != "\r":
+ if not print_messages:
M-A Ruel 2009/10/27 23:31:13 Move this inside the print_stdout. You don't want
Dirk Pranke 2009/10/27 23:44:30 Are you sure? In the old version we would've print
+ print("\n________ running \'%s\' in \'%s\'"
+ % (' '.join(command), in_directory))
+ print_messages = True
if print_stdout:
sys.stdout.write(in_byte)
if in_byte != "\n":
« no previous file with comments | « gclient_scm.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698