| Index: tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
|
| diff --git a/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py b/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
|
| index 7e84dde15aee9f76bffaec36ea7ab56e51dd2a97..4eb1d53644fa7013ee1ea0c5c63fee6c6f9d6c6c 100644
|
| --- a/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
|
| +++ b/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
|
| @@ -159,7 +159,6 @@ class LinuxBasedPlatformBackend(platform_backend.PlatformBackend):
|
| jiffies_timer_list = jiffies_timer_lines.splitlines()
|
| # Each line should look something like 'jiffies: 4315883489'.
|
| for line in jiffies_timer_list:
|
| - print repr(line)
|
| match = re.match('\s*jiffies\s*:\s*(\d+)', line)
|
| if match:
|
| value = match.group(1)
|
|
|