mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 10:19:28 +02:00
* If InitDebugClient fails, do not try to write a debug-message
git-svn-id: trunk@11843 -
This commit is contained in:
parent
340844b9e0
commit
b7f07f8144
@ -86,7 +86,7 @@ begin
|
||||
if DebugDisabled then exit;
|
||||
try
|
||||
If (DebugClient=Nil) then
|
||||
InitDebugClient;
|
||||
if InitDebugClient = false then exit;
|
||||
if (Indent>0) then
|
||||
Msg.Msg:=StringOfChar(' ',Indent)+Msg.Msg;
|
||||
WriteMessage(Msg);
|
||||
|
Loading…
Reference in New Issue
Block a user