type
TScOnLogError = procedure (Sender: TObject; const Message: string; E: Exception) of object;
property OnLogError: TScOnLogError;
Description
The OnLogError event occurs when logger needs to format and write an error log message.
Parameters:
• | Sender - the object that raises the event; |
• | Message - the format string of the log message; |
• | E - the exception to log. |