Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(749)

Unified Diff: tools/android/loading/network_activity_lens.py

Issue 1972413002: clovis: Silence noisy NetworkActivityLens. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/loading/network_activity_lens.py
diff --git a/tools/android/loading/network_activity_lens.py b/tools/android/loading/network_activity_lens.py
index b30cac86c7b8a7a2758885b611820ec74769fa02..7e087e492a0e577c43e9330e021de4adc8b337f8 100644
--- a/tools/android/loading/network_activity_lens.py
+++ b/tools/android/loading/network_activity_lens.py
@@ -237,6 +237,4 @@ class NetworkEvent(object):
"""Returns the download rate of this event in Bytes / s."""
downloaded_bytes = self.DownloadedBytes()
value = 1000 * downloaded_bytes / float(self.end_msec - self.start_msec)
- if value > 1e6:
- print self._kind, downloaded_bytes, self.end_msec - self.start_msec
return value
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698