Index: presubmit_canned_checks.py |
diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py |
index 995aa45504c0ac1f1382d3cd98ee5b2812e125c1..8571c36962188177057b9c2da43588bdbbd7a62a 100644 |
--- a/presubmit_canned_checks.py |
+++ b/presubmit_canned_checks.py |
@@ -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() |