Changeset 207414 in webkit


Ignore:
Timestamp:
Oct 17, 2016 10:49:14 AM (7 years ago)
Author:
Michael Catanzaro
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):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r207413 r207414  
     12016-10-17  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        REGRESSION(r206189): logs error statements when API::URLRequest is canceled
     4        https://bugs.webkit.org/show_bug.cgi?id=163393
     5
     6        Reviewed by Antti Koivisto.
     7
     8        Print this case at normal logging level, not as an error.
     9
     10        * WebProcess/Network/WebLoaderStrategy.cpp:
     11        (WebKit::WebLoaderStrategy::loadResource):
     12
    1132016-10-17  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Source/WebKit2/WebProcess/Network/WebLoaderStrategy.cpp

    r206809 r207414  
    7878        scheduleLoad(*loader, &resource, frame.document()->referrerPolicy() == ReferrerPolicy::Default);
    7979    else
    80         RELEASE_LOG_ERROR_IF_ALLOWED(frame, "loadResource: Unable to create SubresourceLoader (frame = %p", &frame);
     80        RELEASE_LOG_IF_ALLOWED(frame, "loadResource: Unable to create SubresourceLoader (frame = %p", &frame);
    8181    return loader;
    8282}
Note: See TracChangeset for help on using the changeset viewer.