Skip to content

Commit 1466b6b

Browse files
Add log when experimental network loader is used
https://bugs.webkit.org/show_bug.cgi?id=227932 Reviewed by Chris Dumez. We are seeing some reports of serious loading issues in bugs related to rdar://80330028 and we think they are because of problems related to the experimental network loader, which can be enabled in experimental features but is not ready for use on the internet yet. Add a log so we can determine for sure that is what is going on in those cases. * NetworkProcess/cocoa/NetworkSessionCocoa.mm: (WebKit::NetworkSessionCocoa::NetworkSessionCocoa): Canonical link: https://commits.webkit.org/240191@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280567 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 73392da commit 1466b6b

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

Source/WebKit/ChangeLog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2021-08-02 Alex Christensen <achristensen@webkit.org>
2+
3+
Add log when experimental network loader is used
4+
https://bugs.webkit.org/show_bug.cgi?id=227932
5+
6+
Reviewed by Chris Dumez.
7+
8+
We are seeing some reports of serious loading issues in bugs related to rdar://80330028
9+
and we think they are because of problems related to the experimental network loader, which can be
10+
enabled in experimental features but is not ready for use on the internet yet.
11+
Add a log so we can determine for sure that is what is going on in those cases.
12+
13+
* NetworkProcess/cocoa/NetworkSessionCocoa.mm:
14+
(WebKit::NetworkSessionCocoa::NetworkSessionCocoa):
15+
116
2021-08-02 Fujii Hironori <Hironori.Fujii@sony.com>
217

318
[Win] ASSERTION FAILED: evt->type() == eventNames().keydownEvent || evt->type() == eventNames().keypressEvent in WebView::interpretKeyEvent since r280492

Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,6 +1258,7 @@ static void activateSessionCleanup(NetworkSessionCocoa& session, const NetworkSe
12581258
#endif
12591259

12601260
#if HAVE(NETWORK_LOADER)
1261+
RELEASE_LOG_IF(parameters.useNetworkLoader, NetworkSession, "Using experimental network loader.");
12611262
configuration._usesNWLoader = parameters.useNetworkLoader;
12621263
#endif
12631264

0 commit comments

Comments
 (0)