Show the timeupdate events at stream debug level 2, not level 1.

They are fairly noisy, and more appropriate to the
more detailed level.
This commit is contained in:
Jeremy White 2016-12-15 10:40:15 -06:00
parent bed406adf3
commit ef3807908d
1 changed files with 2 additions and 1 deletions

View File

@ -1203,10 +1203,11 @@ function listen_for_video_events(stream)
var video_1_events = [
"loadstart", "suspend", "emptied", "stalled", "loadedmetadata", "loadeddata", "canplay",
"canplaythrough", "playing", "waiting", "seeking", "seeked", "ended", "durationchange",
"timeupdate", "play", "pause", "ratechange"
"play", "pause", "ratechange"
];
var video_2_events = [
"timeupdate",
"progress",
"resize",
"volumechange"