WKWebView console endless warnings

Whenever navigating to a page of my app containing a web view, console prints tons of warnings of all kinds.

The way I use it is by loading my HTML into it with:

Code Block
myWebView.loadHTMLString(string, baseURL: withURL)


Some examples:

Code Block
2020-06-18 18:42:27.661562-0400 MYAPP[2643:464446] WF: === Starting WebFilter logging for process MYAPP
2020-06-18 18:42:27.661623-0400 MYAPP[2643:464446] WF: _userSettingsForUser mobile: {
    filterBlacklist =     (
    );
    filterWhitelist =     (
    );
    restrictWeb = 1;
    useContentFilter = 0;
    useContentFilterOverrides = 0;
    whitelistEnabled = 0;
}
2020-06-18 18:42:27.661665-0400 MYAPP[2643:464446] WF: _WebFilterIsActive returning: NO
2020-06-18 18:42:54.601118-0400 MYAPP[2643:464446] [ProcessSuspension] 0x10f895ad0 - ProcessAssertion::processAssertionWasInvalidated()
2020-06-18 18:42:54.617655-0400 MYAPP[2643:464446] [ProcessSuspension] 0x10f895b30 - ProcessAssertion::processAssertionWasInvalidated()
2020-06-18 18:43:24.488553-0400 MYAPP[2643:464446] Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service
2020-06-18 18:43:24.495040-0400 MYAPP[2643:464446] Could not signal service com.apple.WebKit.Networking: 113: Could not find specified service

Did you ever find a solution to this problem? I am having the same issue. (except my baseURL is nil)
WKWebView console endless warnings
 
 
Q