mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 11:08:00 +02:00
LazLogger: Fixed indent for event
git-svn-id: trunk@35326 -
This commit is contained in:
parent
20f0d2d151
commit
c5624ffcb1
@ -1297,7 +1297,10 @@ begin
|
||||
if FOnDbgOut <> nil then
|
||||
begin
|
||||
Handled := False;
|
||||
FOnDbgOut(Self, s, Handled);
|
||||
if FDebugNestAtBOL and (s <> '') then
|
||||
FOnDbgOut(Self, FDebugIndent + s, Handled)
|
||||
else
|
||||
FOnDbgOut(Self, s, Handled);
|
||||
if Handled then
|
||||
Exit;
|
||||
end;
|
||||
@ -1318,7 +1321,10 @@ begin
|
||||
if FOnDebugLn <> nil then
|
||||
begin
|
||||
Handled := False;
|
||||
FOnDebugLn(Self, s, Handled);
|
||||
if FDebugNestAtBOL and (s <> '') then
|
||||
FOnDebugLn(Self, FDebugIndent + s, Handled)
|
||||
else
|
||||
FOnDebugLn(Self, s, Handled);
|
||||
if Handled then
|
||||
Exit;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user