Title: [254845] trunk/Source/WebKit
Revision
254845
Author
[email protected]
Date
2020-01-21 00:03:40 -0800 (Tue, 21 Jan 2020)

Log Message

Log the destination of a load when hitting network process
https://bugs.webkit.org/show_bug.cgi?id=206422

Reviewed by Darin Adler.

* NetworkProcess/NetworkResourceLoader.cpp:
No change of behavior, adding more precise logging.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (254844 => 254845)


--- trunk/Source/WebKit/ChangeLog	2020-01-21 07:21:04 UTC (rev 254844)
+++ trunk/Source/WebKit/ChangeLog	2020-01-21 08:03:40 UTC (rev 254845)
@@ -1,3 +1,13 @@
+2020-01-21  youenn fablet  <[email protected]>
+
+        Log the destination of a load when hitting network process
+        https://bugs.webkit.org/show_bug.cgi?id=206422
+
+        Reviewed by Darin Adler.
+
+        * NetworkProcess/NetworkResourceLoader.cpp:
+        No change of behavior, adding more precise logging.
+
 2020-01-20  David Kilzer  <[email protected]>
 
         Fix missing header guards and clean up empty files in WebCore, WebKitLegacy, WebKit, Tools

Modified: trunk/Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp (254844 => 254845)


--- trunk/Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp	2020-01-21 07:21:04 UTC (rev 254844)
+++ trunk/Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp	2020-01-21 08:03:40 UTC (rev 254845)
@@ -65,8 +65,8 @@
 #include <WebCore/PreviewConverter.h>
 #endif
 
-#define RELEASE_LOG_IF_ALLOWED(fmt, ...) RELEASE_LOG_IF(isAlwaysOnLoggingAllowed(), Network, "%p - [pageProxyID=%" PRIu64 ", webPageID=%" PRIu64 ", frameID=%" PRIu64 ", resourceID=%" PRIu64 ", isMainResource=%d, isSynchronous=%d] NetworkResourceLoader::" fmt, this, m_parameters.webPageProxyID.toUInt64(), m_parameters.webPageID.toUInt64(), m_parameters.webFrameID.toUInt64(), m_parameters.identifier, isMainResource(), isSynchronous(), ##__VA_ARGS__)
-#define RELEASE_LOG_ERROR_IF_ALLOWED(fmt, ...) RELEASE_LOG_ERROR_IF(isAlwaysOnLoggingAllowed(), Network, "%p - [pageProxyID=%" PRIu64 ", webPageID=%" PRIu64 ", frameID=%" PRIu64 ", resourceID=%" PRIu64 ", isMainResource=%d, isSynchronous=%d] NetworkResourceLoader::" fmt, this, m_parameters.webPageProxyID.toUInt64(), m_parameters.webPageID.toUInt64(), m_parameters.webFrameID.toUInt64(), m_parameters.identifier, isMainResource(), isSynchronous(), ##__VA_ARGS__)
+#define RELEASE_LOG_IF_ALLOWED(fmt, ...) RELEASE_LOG_IF(isAlwaysOnLoggingAllowed(), Network, "%p - [pageProxyID=%" PRIu64 ", webPageID=%" PRIu64 ", frameID=%" PRIu64 ", resourceID=%" PRIu64 ", isMainResource=%d, destination=%u, isSynchronous=%d] NetworkResourceLoader::" fmt, this, m_parameters.webPageProxyID.toUInt64(), m_parameters.webPageID.toUInt64(), m_parameters.webFrameID.toUInt64(), m_parameters.identifier, isMainResource(), static_cast<unsigned>(m_parameters.options.destination), isSynchronous(), ##__VA_ARGS__)
+#define RELEASE_LOG_ERROR_IF_ALLOWED(fmt, ...) RELEASE_LOG_ERROR_IF(isAlwaysOnLoggingAllowed(), Network, "%p - [pageProxyID=%" PRIu64 ", webPageID=%" PRIu64 ", frameID=%" PRIu64 ", resourceID=%" PRIu64 ", isMainResource=%d, destination=%u, isSynchronous=%d] NetworkResourceLoader::" fmt, this, m_parameters.webPageProxyID.toUInt64(), m_parameters.webPageID.toUInt64(), m_parameters.webFrameID.toUInt64(), m_parameters.identifier, isMainResource(), static_cast<unsigned>(m_parameters.options.destination), isSynchronous(), ##__VA_ARGS__)
 
 namespace WebKit {
 using namespace WebCore;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to