1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-12 22:07:39 +02:00

Added missing process type to the CefDebugLog procedure

This commit is contained in:
Salvador Díaz Fau
2020-04-25 16:47:16 +02:00
parent 17c82fa24c
commit a3cab55a7c
2 changed files with 3 additions and 2 deletions

View File

@ -837,7 +837,8 @@ begin
ptRenderer : TempString := TempString + ', PT: Renderer';
ptZygote : TempString := TempString + ', PT: Zygote';
ptGPU : TempString := TempString + ', PT: GPU';
else TempString := TempString + ', PT: Other';
ptUtility : TempString := TempString + ', PT: Utility';
ptOther : TempString := TempString + ', PT: Other';
end;
CefLog('CEF4Delphi', DEFAULT_LINE, aSeverity, TempString + ' - ' + aMessage);