1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-02-02 10:25:26 +02:00

The process information in the debug file has been disabled

This commit is contained in:
Salvador Díaz Fau 2018-10-12 22:23:21 +02:00
parent a3c3c3398f
commit 6e5a280556

View File

@ -1633,7 +1633,13 @@ begin
FLibLoaded := True;
Result := True;
{$IFDEF DEBUG}CefDebugLog('Process started', CEF_LOG_SEVERITY_INFO);{$ENDIF}
{$IFDEF DEBUG}
// Enable the following code line to add the PROCESSID of each process
// to the "debug.log" file. That information will help you select the
// right process when you need to debug the render process.
//CefDebugLog('Process started', CEF_LOG_SEVERITY_INFO);
{$ENDIF}
if FEnableHighDPISupport then cef_enable_highdpi_support();
end