Closed edwinyzh closed 1 year ago
In LoggerPro.pas, the following line couldn't be compiled under XE4:
procedure TLoggerProAppenderBase.Setup; begin FFormatSettings := LoggerPro.GetDefaultFormatSettings; end;
Change it as following will fix the XE4 compilation error: FFormatSettings := GetDefaultFormatSettings;
FFormatSettings := GetDefaultFormatSettings;
Thanks!
Same problem with Delphi 10 Seattle
In LoggerPro.pas, the following line couldn't be compiled under XE4:
Change it as following will fix the XE4 compilation error:
FFormatSettings := GetDefaultFormatSettings;
Thanks!