mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-10 15:08:28 +02:00
LCL: better exception debug messages
git-svn-id: trunk@58091 -
This commit is contained in:
parent
3ae76828ef
commit
a906b48e80
@ -22,7 +22,8 @@ procedure TEventContainer.HandleApplicationException(Sender: TObject;
|
||||
begin
|
||||
if not (E is EAbort) then
|
||||
begin
|
||||
DebugLn('TApplication.HandleException ',E.Message);
|
||||
DebugLn('TApplication.HandleException: ',E.ClassName);
|
||||
DebugLn(E.Message);
|
||||
DumpExceptionBackTrace;
|
||||
Application.ShowException(E);
|
||||
end;
|
||||
@ -30,7 +31,7 @@ end;
|
||||
|
||||
procedure HandleOnShowException(Msg: ShortString);
|
||||
begin
|
||||
DebugLn('TApplication.HandleException Strange Exception');
|
||||
DebugLn('TApplication.HandleException: Strange Exception');
|
||||
DebugLn(Msg);
|
||||
DumpExceptionBackTrace;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user