summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorrnephew <rnephew@chromium.org>2015-04-27 11:36:32 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-27 18:37:13 +0000
commit37693acd07dd1a0c2ccc96c11dad0904deaa02dc (patch)
treeeba41d329044d92bcc92aff817acf4b6ef293858 /tools
parentc5b37b06ebfb24dcb25dc42c023d120c03f39b71 (diff)
downloadchromium_src-37693acd07dd1a0c2ccc96c11dad0904deaa02dc.zip
chromium_src-37693acd07dd1a0c2ccc96c11dad0904deaa02dc.tar.gz
chromium_src-37693acd07dd1a0c2ccc96c11dad0904deaa02dc.tar.bz2
[Telemetry] Clean up debugging print for jiffies
In linux_based_platform_backend a print message for debugging information snuck its way in. This gets rid of that. BUG= Review URL: https://codereview.chromium.org/1110543004 Cr-Commit-Position: refs/heads/master@{#327083}
Diffstat (limited to 'tools')
-rw-r--r--tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py1
1 files changed, 0 insertions, 1 deletions
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 7e84dde..4eb1d536 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)