mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-19 18:09:43 +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);
|
||||
end;
|
||||
|
||||
procedure DoNotifyAsync(const Line: String);
|
||||
procedure DoNotifyAsync(var Line: String);
|
||||
var
|
||||
S: String;
|
||||
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;
|
||||
|
||||
procedure DoResultRecord(const Line: String);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user