Commit 40395347 authored by csharp@chromium.org's avatar csharp@chromium.org

Reduce Presubmit pylint logging.

Printing the list of all the files examined can produce a lot
out of output and bury the interesting output.


BUG=


Review URL: https://chromiumcodereview.appspot.com/12315031

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@183813 0039d316-1c4b-4281-b951-d872f2087c98
parent a287393e
......@@ -671,7 +671,8 @@ def RunPylint(input_api, output_api, white_list=None, black_list=None,
if not files:
return []
input_api.logging.info('Running pylint on: %s', files)
input_api.logging.info('Running pylint on %d files', len(files))
input_api.logging.debug('Running pylint on: %s', files)
# Copy the system path to the environment so pylint can find the right
# imports.
env = input_api.environ.copy()
......
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