mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-02 11:01:20 +02:00
lazbuild: hide instantfpccache macro verbose messages by default
git-svn-id: trunk@50405 -
This commit is contained in:
parent
151933ef38
commit
7d5805e49b
@ -1920,9 +1920,9 @@ begin
|
||||
if Prog<>'' then begin
|
||||
List:=nil;
|
||||
try
|
||||
if ConsoleVerbosity>=0 then
|
||||
if ConsoleVerbosity>0 then
|
||||
debugln(['Hint: (lazarus) TBuildManager.MacroFuncInstantFPCCache ',Prog]);
|
||||
List:=RunTool(Prog,'--get-cache','',ConsoleVerbosity<0);
|
||||
List:=RunTool(Prog,'--get-cache','',ConsoleVerbosity<1);
|
||||
if (List<>nil) and (List.Count>0) then
|
||||
FMacroInstantFPCCache:=List[0];
|
||||
List.Free;
|
||||
@ -1933,7 +1933,7 @@ begin
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
if ConsoleVerbosity>=0 then
|
||||
if ConsoleVerbosity>=1 then
|
||||
debugln(['Hint: (lazarus) [TBuildManager.MacroFuncInstantFPCCache] ',FMacroInstantFPCCache]);
|
||||
end;
|
||||
Result:=FMacroInstantFPCCache;
|
||||
|
Loading…
Reference in New Issue
Block a user