| Index: build/android/pylib/utils/findbugs.py
|
| diff --git a/build/android/pylib/utils/findbugs.py b/build/android/pylib/utils/findbugs.py
|
| index 2f0fff91bb68c40793f92946a470a34de366d17c..d946f319f14043899ab8caac67e46fbef7f2de5d 100644
|
| --- a/build/android/pylib/utils/findbugs.py
|
| +++ b/build/android/pylib/utils/findbugs.py
|
| @@ -144,6 +144,13 @@ def _Run(exclude, known_bugs, classes_to_analyze, auxiliary_classes,
|
| return 1
|
| cmd = '%s %s ' % (cmd, chrome_classes)
|
|
|
| + print
|
| + print '*' * 80
|
| + print 'Command used to run findbugs:'
|
| + print cmd
|
| + print '*' * 80
|
| + print
|
| +
|
| proc = subprocess.Popen(shlex.split(cmd),
|
| stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
| out, _err = proc.communicate()
|
|
|