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.

Events (messages) console

Post Reply
User avatar
salvadordf
Posts: 4057
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Events (messages) console

Post by salvadordf »

Hi,

Set the GlobalCEFApp.RemoteDebuggingPort property to a custom port value to enable remote debugging.

The CEF code comments for that property are these :

Code: Select all

  ///
  // Set to a value between 1024 and 65535 to enable remote debugging on the
  // specified port. For example, if 8080 is specified the remote debugging URL
  // will be http://localhost:8080. CEF can be remotely debugged from any CEF or
  // Chrome browser window. Also configurable using the "remote-debugging-port"
  // command-line switch.
  ///
Then you will need to use the DevTools protocol to get that info remotely :
https://chromedevtools.github.io/devtools-protocol/
https://github.com/aslushnikov/getting- ... /README.md
Post Reply