Title: [254299] trunk/Source/WebKit
Revision
254299
Author
timothy_hor...@apple.com
Date
2020-01-09 14:36:46 -0800 (Thu, 09 Jan 2020)

Log Message

Fix a tiny logging mistake in launchProcess
https://bugs.webkit.org/show_bug.cgi?id=206026

Reviewed by Wenson Hsieh.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::launchProcess):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (254298 => 254299)


--- trunk/Source/WebKit/ChangeLog	2020-01-09 22:25:14 UTC (rev 254298)
+++ trunk/Source/WebKit/ChangeLog	2020-01-09 22:36:46 UTC (rev 254299)
@@ -1,3 +1,13 @@
+2020-01-09  Tim Horton  <timothy_hor...@apple.com>
+
+        Fix a tiny logging mistake in launchProcess
+        https://bugs.webkit.org/show_bug.cgi?id=206026
+
+        Reviewed by Wenson Hsieh.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::launchProcess):
+
 2020-01-09  John Wilander  <wilan...@apple.com>
 
         Resource Load Statistics: Add timing information to WebPageProxy::logFrameNavigation() to detect delayed client-side redirects

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (254298 => 254299)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-01-09 22:25:14 UTC (rev 254298)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-01-09 22:36:46 UTC (rev 254299)
@@ -752,7 +752,7 @@
     ASSERT(!m_isClosed);
     ASSERT(!hasRunningProcess());
 
-    RELEASE_LOG_IF_ALLOWED(Loading, "launchProcess:" PRIu64);
+    RELEASE_LOG_IF_ALLOWED(Loading, "launchProcess:");
 
     m_process->removeWebPage(*this, WebProcessProxy::EndsUsingDataStore::Yes);
     m_process->removeMessageReceiver(Messages::WebPageProxy::messageReceiverName(), m_webPageID);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to