PDA

View Full Version : How to write info text into .elf


Andreas Meck
23-Aug-2005, 12:45 PM
Is there a way to write text into the log?
No need to show an user dialog at runtime.
I only want to documentate the program flow in critcal sections.

Thanks!

admin
23-Aug-2005, 05:01 PM
Andreas Meck wrote:
> Is there a way to write text into the log?
> No need to show an user dialog at runtime.
> I only want to documentate the program flow in critcal sections.
>
> Thanks!

You must use an CustomDataRequest event like this:

uses
ExceptionLog, ECore, ETypes; // The required units...

procedure MyCustomData(EurekaExceptionRecord: TEurekaExceptionRecord;
var CustomData: String);
begin
CustomData := 'YOUR CUSTOM DATA HERE';
end;


--
Best regards...

Fabio Dell'Aria.