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

Unified Diff: gclient_utils.py

Issue 6576042: Remove unneeded logging.info() calls. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index fcdac884bb436ab6e077e7b1a86c73c5fa21ba52..7182848527a15af96b5b4fbfe2770cf6f0d7438e 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -87,7 +87,6 @@ def CheckCall(command, print_error=True, **kwargs):
Works on python 2.4
"""
- logging.info("CheckCall(%s)" % command)
try:
stderr = None
if not print_error:
@@ -99,7 +98,6 @@ def CheckCall(command, print_error=True, **kwargs):
if process.returncode:
raise CheckCallError(command, kwargs.get('cwd', None), process.returncode,
std_out, std_err)
- logging.info("CheckCall done")
return std_out, std_err
« 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