Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
If you find these projects useful please consider becoming a sponsor with Patreon, GitHub or Liberapay.

Errors and warnings on LOG file

Post Reply
thefunkyjoint
Posts: 513
Joined: Thu Aug 10, 2017 12:40 pm

Errors and warnings on LOG file

Post by thefunkyjoint »

Hi,

I'm using the log file to try to detected some random crashes my app is having. The messages below are frequent, any hints ?

[1023/153350.050:WARNING:spdy_session.cc(2881)] Received WINDOW_UPDATE for invalid stream 9
[1023/153356.287:WARNING:extension_protocols.cc(467)] Failed to GetPathForExtension: invalid
[1023/153356.287:WARNING:url_request_job_manager.cc(90)] Failed to map: chrome-extension://invalid/
User avatar
salvadordf
Posts: 4564
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Errors and warnings on LOG file

Post by salvadordf »

Hi,

CEF3 shows many warnings, specially if you run the demos inside virtual machines or use the debug binaries instead of the release binaries. In addition to that, you can use several logging verbosity levels that add even more information.

For more information about each log line you can take a look at the CEF3 sources. For example :

Code: Select all

[1023/153350.050:WARNING:spdy_session.cc(2881)] Received WINDOW_UPDATE for invalid stream 9
This message is generated in the spdy_session.cc source file, line 2881. For the name of that file you can deduce that it's related to the SPDY protocol and it will probably have some comments near the 2881 line that explain why it is shown.
Post Reply