| 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
|
|
|