Add logging host lookups made by TurnPort to the RtcEventLog.

The following fields are logged:
- error, if there was an error.
- elapsed time in milliseconds

BUG=webrtc:8100

Review-Url: https://codereview.webrtc.org/2996933003
Cr-Commit-Position: refs/heads/master@{#19574}
This commit is contained in:
jonaso
2017-08-29 03:20:58 -07:00
committed by Commit Bot
parent f83dc8bbe5
commit c251cb13c0
25 changed files with 273 additions and 50 deletions

View File

@ -509,6 +509,10 @@ EventLogAnalyzer::EventLogAnalyzer(const ParsedRtcEventLog& log)
bwe_probe_result_events_.push_back(parsed_log_.GetBweProbeResult(i));
break;
}
case ParsedRtcEventLog::HOST_LOOKUP_EVENT: {
// TODO(jonaso): What to do ??
break;
}
case ParsedRtcEventLog::UNKNOWN_EVENT: {
break;
}