Re: Events (messages) console
Posted: Mon Oct 14, 2019 1:30 pm
Hi,
Set the GlobalCEFApp.RemoteDebuggingPort property to a custom port value to enable remote debugging.
The CEF code comments for that property are these :
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
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.
///
https://chromedevtools.github.io/devtools-protocol/
https://github.com/aslushnikov/getting- ... /README.md