Commit 37693acd authored by rnephew's avatar rnephew Committed by Commit bot

[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}
parent c5b37b06
...@@ -159,7 +159,6 @@ class LinuxBasedPlatformBackend(platform_backend.PlatformBackend): ...@@ -159,7 +159,6 @@ class LinuxBasedPlatformBackend(platform_backend.PlatformBackend):
jiffies_timer_list = jiffies_timer_lines.splitlines() jiffies_timer_list = jiffies_timer_lines.splitlines()
# Each line should look something like 'jiffies: 4315883489'. # Each line should look something like 'jiffies: 4315883489'.
for line in jiffies_timer_list: for line in jiffies_timer_list:
print repr(line)
match = re.match('\s*jiffies\s*:\s*(\d+)', line) match = re.match('\s*jiffies\s*:\s*(\d+)', line)
if match: if match:
value = match.group(1) value = match.group(1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment