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
experimental/szager/collated-output
csharp@chromium.org 12 years ago
parent a287393e19
commit 40395347a5

@ -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()

Loading…
Cancel
Save