Modified: trunk/Source/WebCore/ChangeLog (255361 => 255362)
--- trunk/Source/WebCore/ChangeLog 2020-01-29 17:15:25 UTC (rev 255361)
+++ trunk/Source/WebCore/ChangeLog 2020-01-29 17:30:29 UTC (rev 255362)
@@ -1,3 +1,17 @@
+2020-01-29 Peng Liu <peng.l...@apple.com>
+
+ Always enable some log messages related to audio tracks
+ https://bugs.webkit.org/show_bug.cgi?id=206918
+
+ Reviewed by Eric Carlson.
+
+ No new tests needed. Just enable some log messages.
+
+ * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
+ (WebCore::MediaPlayerPrivateAVFoundationObjC::tracksChanged):
+ (WebCore::MediaPlayerPrivateAVFoundationObjC::updateAudioTracks):
+ (WebCore::MediaPlayerPrivateAVFoundationObjC::updateVideoTracks):
+
2020-01-29 Antti Koivisto <an...@apple.com>
REGRESSION: WK1 Accessibility: ASSERTION FAILED: FontCache::singleton().generation() == m_generation
Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (255361 => 255362)
--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm 2020-01-29 17:15:25 UTC (rev 255361)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm 2020-01-29 17:30:29 UTC (rev 255362)
@@ -1869,7 +1869,7 @@
setHasClosedCaptions(hasCaptions);
- INFO_LOG(LOGIDENTIFIER, "has video = ", hasVideo(), ", has audio = ", hasAudio(), ", has captions = ", hasClosedCaptions());
+ ALWAYS_LOG(LOGIDENTIFIER, "has video = ", hasVideo(), ", has audio = ", hasAudio(), ", has captions = ", hasClosedCaptions());
sizeChanged();
@@ -2034,7 +2034,7 @@
track->resetPropertiesFromTrack();
#if !RELEASE_LOG_DISABLED
- INFO_LOG(LOGIDENTIFIER, "track count was ", count, ", is ", m_audioTracks.size());
+ ALWAYS_LOG(LOGIDENTIFIER, "track count was ", count, ", is ", m_audioTracks.size());
#endif
}
@@ -2058,7 +2058,7 @@
track->resetPropertiesFromTrack();
#if !RELEASE_LOG_DISABLED
- INFO_LOG(LOGIDENTIFIER, "track count was ", count, ", is ", m_videoTracks.size());
+ ALWAYS_LOG(LOGIDENTIFIER, "track count was ", count, ", is ", m_videoTracks.size());
#endif
}