Commit 31f10a86 authored by maruel@chromium.org's avatar maruel@chromium.org

Remove unneeded logging.info() calls.

TBR=bradnelson
BUG=none
TEST=none

Review URL: http://codereview.chromium.org/6576042

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@75918 0039d316-1c4b-4281-b951-d872f2087c98
parent 00fdcb33
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment