mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-23 01:50:30 +01:00
* Reduced async-record shlibs debugger output
git-svn-id: trunk@12712 -
This commit is contained in:
parent
31f9b02560
commit
c6c16d5bbd
@ -1652,9 +1652,19 @@ function TGDBMIDebugger.ProcessRunning(var AStoppedParams: String): Boolean;
|
|||||||
DebugLn('[Debugger] Status output: ', Line);
|
DebugLn('[Debugger] Status output: ', Line);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure DoNotifyAsync(const Line: String);
|
procedure DoNotifyAsync(var Line: String);
|
||||||
|
var
|
||||||
|
S: String;
|
||||||
begin
|
begin
|
||||||
DebugLn('[Debugger] Notify output: ', Line);
|
S := GetPart('=', ',', Line);
|
||||||
|
case StringCase(S, ['shlibs-added', 'shlibs-updated']) of
|
||||||
|
0: begin
|
||||||
|
//TODO: track libs
|
||||||
|
end;
|
||||||
|
1:; //ignore
|
||||||
|
else
|
||||||
|
DebugLn('[Debugger] Notify output: ', Line);
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure DoResultRecord(const Line: String);
|
procedure DoResultRecord(const Line: String);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user