| Index: tools/perf/core/trybot_command.py
|
| diff --git a/tools/perf/core/trybot_command.py b/tools/perf/core/trybot_command.py
|
| index 87699398292f4d280da67871a6db846f99e001c7..36f6bd94bcc056bff7a3bb1aa467c51f91acd403 100644
|
| --- a/tools/perf/core/trybot_command.py
|
| +++ b/tools/perf/core/trybot_command.py
|
| @@ -300,6 +300,10 @@ class Trybot(command_line.ArgParseCommand):
|
| # To make sure that we don't mutate the original args
|
| arguments = arguments[:]
|
|
|
| + # Always set verbose logging for later debugging
|
| + if '-v' not in arguments and '--verbose' not in arguments:
|
| + arguments.append('--verbose')
|
| +
|
| # Generate the command line for the perf trybots
|
| target_arch = 'ia32'
|
| if any(arg == '--chrome-root' or arg.startswith('--chrome-root=') for arg
|
|
|