Title: [255362] trunk/Source/WebCore
Revision
255362
Author
peng.l...@apple.com
Date
2020-01-29 09:30:29 -0800 (Wed, 29 Jan 2020)

Log Message

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

Modified Paths

Diff

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
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to