mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 00:38:10 +02:00
IDE: Make the --quiet parameter actually quiet. Quiet means ConsoleVerbosity=-1. Formatting.
git-svn-id: trunk@59257 -
This commit is contained in:
parent
c04a9e4739
commit
66d593c327
@ -2551,7 +2551,7 @@ begin
|
||||
// compute macro values
|
||||
|
||||
if ParseOpts.MacroValuesParsing then begin
|
||||
if ConsoleVerbosity>=-1 then
|
||||
if ConsoleVerbosity>=0 then
|
||||
debugln(['Warning: (lazarus) [TBuildManager.OnGetBuildMacroValues] cycle computing macros of ',dbgsname(Options.Owner)]);
|
||||
exit;
|
||||
end;
|
||||
|
@ -614,7 +614,7 @@ begin
|
||||
Thread.Tool:=Self;
|
||||
FThread.FreeOnTerminate:=true;
|
||||
end;
|
||||
if ConsoleVerbosity>=-1 then begin
|
||||
if ConsoleVerbosity>=0 then begin
|
||||
debugln(['Info: (lazarus) Execute Title="',Title,'"']);
|
||||
debugln(['Info: (lazarus) Working Directory="',Process.CurrentDirectory,'"']);
|
||||
debugln(['Info: (lazarus) Executable="',Process.Executable,'"']);
|
||||
|
@ -6766,7 +6766,7 @@ begin
|
||||
if (AReason = crRun)
|
||||
and (not (pfAlwaysBuild in Project1.Flags)) then begin
|
||||
if Result=mrNo then begin
|
||||
debugln(['Error: (lazarus) [TMainIDE.DoBuildProject] MainBuildBoss.DoCheckIfProjectNeedsCompilation nothing to be done']);
|
||||
debugln(['Note: (lazarus) [TMainIDE.DoBuildProject] MainBuildBoss.DoCheckIfProjectNeedsCompilation nothing to be done']);
|
||||
Result:=mrOk;
|
||||
// continue for now, check if 'Before' tool is required
|
||||
NoBuildNeeded:= true;
|
||||
|
@ -3340,7 +3340,7 @@ begin
|
||||
continue;
|
||||
end;
|
||||
if FileAgeCached(Filename)>StateFileAge then begin
|
||||
if ConsoleVerbosity>=-1 then
|
||||
if ConsoleVerbosity>=0 then
|
||||
debugln(['Hint: (lazarus) global unit "',Filename,'" is newer than state file of package ',ID]);
|
||||
Note+='Global unit "'+Filename+'" is newer than state file of '+ID+':'+LineEnding
|
||||
+' Unit age='+FileAgeToStr(FileAgeCached(Filename))+LineEnding
|
||||
@ -4696,7 +4696,7 @@ begin
|
||||
if FileIsExecutableCached(Executable) then begin
|
||||
if (not NeedFPCMake)
|
||||
and (FileAgeUTF8(MakefileFPCFilename)<FileAgeCached(Executable)) then begin
|
||||
if ConsoleVerbosity>=-1 then
|
||||
if ConsoleVerbosity>=0 then
|
||||
debugln(['Hint: (lazarus) [TLazPackageGraph.WriteMakeFile] "',Executable,'" is newer than "',MakefileFPCFilename,'"']);
|
||||
NeedFPCMake:=true;// fpcmake is newer than Makefile.fpc
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user