mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 06:59:14 +02:00
Debugger: a bit reduced debugln-output.
git-svn-id: trunk@28216 -
This commit is contained in:
parent
2be63ddc61
commit
21aade180b
@ -6423,11 +6423,11 @@ begin
|
|||||||
then FTheDebugger.ProcessStopped(StoppedParams, FTheDebugger.PauseWaitState = pwsInternal);
|
then FTheDebugger.ProcessStopped(StoppedParams, FTheDebugger.PauseWaitState = pwsInternal);
|
||||||
|
|
||||||
{$IFDEF DBG_VERBOSE}
|
{$IFDEF DBG_VERBOSE}
|
||||||
if (StoppedParams <> '') and (FTheDebugger.State = dsRun) and (FTheDebugger.FTargetPID <> 0) and (left(FCommand,1,5)='-exec') then begin
|
if (StoppedParams <> '') and (FTheDebugger.State = dsRun) and (FTheDebugger.FTargetPID <> 0) and (copy(FCommand,1,5)='-exec') then begin
|
||||||
debugln(['ERROR: Got stop params, but did not chnage FTheDebugger.state: ', StoppedParams]);
|
debugln(['ERROR: Got stop params, but did not chnage FTheDebugger.state: ', StoppedParams]);
|
||||||
//FTheDebugger.SetState(dsError); // we cannot be running anymore
|
//FTheDebugger.SetState(dsError); // we cannot be running anymore
|
||||||
end;
|
end;
|
||||||
if (StoppedParams = '') and (FTheDebugger.State = dsRun) and (FTheDebugger.FTargetPID <> 0) and (left(FCommand,1,5)='-exec') then begin
|
if (StoppedParams = '') and (FTheDebugger.State = dsRun) and (FTheDebugger.FTargetPID <> 0) and (copy(FCommand,1,5)='-exec') then begin
|
||||||
debugln(['ERROR: Got NO stop params at all, but was running']);
|
debugln(['ERROR: Got NO stop params at all, but was running']);
|
||||||
//FTheDebugger.SetState(dsError); // we cannot be running anymore
|
//FTheDebugger.SetState(dsError); // we cannot be running anymore
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user