Title: [207414] trunk/Source/WebKit2
Revision
207414
Author
mcatanz...@igalia.com
Date
2016-10-17 10:49:14 -0700 (Mon, 17 Oct 2016)

Log Message

REGRESSION(r206189): logs error statements when API::URLRequest is canceled
https://bugs.webkit.org/show_bug.cgi?id=163393

Reviewed by Antti Koivisto.

Print this case at normal logging level, not as an error.

* WebProcess/Network/WebLoaderStrategy.cpp:
(WebKit::WebLoaderStrategy::loadResource):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (207413 => 207414)


--- trunk/Source/WebKit2/ChangeLog	2016-10-17 17:48:28 UTC (rev 207413)
+++ trunk/Source/WebKit2/ChangeLog	2016-10-17 17:49:14 UTC (rev 207414)
@@ -1,3 +1,15 @@
+2016-10-17  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        REGRESSION(r206189): logs error statements when API::URLRequest is canceled
+        https://bugs.webkit.org/show_bug.cgi?id=163393
+
+        Reviewed by Antti Koivisto.
+
+        Print this case at normal logging level, not as an error.
+
+        * WebProcess/Network/WebLoaderStrategy.cpp:
+        (WebKit::WebLoaderStrategy::loadResource):
+
 2016-10-17  Chris Dumez  <cdu...@apple.com>
 
         [iOS] Hook up WebPlatformTouchPoint's radiusX / radiusY to _UIWebTouchPoint.majorRadiusInScreenCoordinates

Modified: trunk/Source/WebKit2/WebProcess/Network/WebLoaderStrategy.cpp (207413 => 207414)


--- trunk/Source/WebKit2/WebProcess/Network/WebLoaderStrategy.cpp	2016-10-17 17:48:28 UTC (rev 207413)
+++ trunk/Source/WebKit2/WebProcess/Network/WebLoaderStrategy.cpp	2016-10-17 17:49:14 UTC (rev 207414)
@@ -77,7 +77,7 @@
     if (loader)
         scheduleLoad(*loader, &resource, frame.document()->referrerPolicy() == ReferrerPolicy::Default);
     else
-        RELEASE_LOG_ERROR_IF_ALLOWED(frame, "loadResource: Unable to create SubresourceLoader (frame = %p", &frame);
+        RELEASE_LOG_IF_ALLOWED(frame, "loadResource: Unable to create SubresourceLoader (frame = %p", &frame);
     return loader;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to