* If InitDebugClient fails, do not try to write a debug-message

git-svn-id: trunk@11843 -
This commit is contained in:
joost 2008-09-30 13:20:42 +00:00
parent 340844b9e0
commit b7f07f8144

View File

@ -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);