Explicitly logging video suspend state.

R=pbos@webrtc.org

Review URL: https://codereview.webrtc.org/2088123003 .

Cr-Commit-Position: refs/heads/master@{#13255}
This commit is contained in:
mflodman 2016-06-22 17:42:30 +02:00
parent 191b359d0d
commit 522739c8c9

View File

@ -269,7 +269,8 @@ void ViEEncoder::OnBitrateUpdated(uint32_t bitrate_bps,
}
if (stats_proxy_ && video_suspension_changed) {
LOG(LS_INFO) << "Video suspend state changed " << video_is_suspended;
LOG(LS_INFO) << "Video suspend state changed to: "
<< (video_is_suspended ? "suspended" : "not suspended");
stats_proxy_->OnSuspendChange(video_is_suspended);
}
}