Skip to content

Commit

Permalink
Changed some not fatal error messages into warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
LongDirtyAnimAlf committed Apr 28, 2017
1 parent fbe2074 commit 9f5b784
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion installerfpc.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2518,7 +2518,7 @@ function TFPCInstaller.CleanModule(ModuleName: string): boolean;
end
else
begin
infoln('FPC: running make distclean failed: could not find compiler ('+FCompiler+')',etError);
infoln('FPC: running make distclean failed: could not find compiler ('+FCompiler+')',etWarning);
end;

// Delete any existing fpc.cfg files
Expand Down
4 changes: 2 additions & 2 deletions installeruniversal.pas
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ function TUniversalInstaller.RemovePackages(sl: TStringList): boolean;
if PackagePath='' then continue;
if NOT FileExists(PackagePath) then
begin
infoln('TUniversalInstaller: package '+ExtractFileName(PackagePath)+' not found ... skipping.',etError);
infoln('TUniversalInstaller: package '+ExtractFileName(PackagePath)+' not found ... skipping.',etWarning);
continue;
end;
Workingdir:=GetValue('Workingdir'+IntToStr(i),sl);
Expand Down Expand Up @@ -518,7 +518,7 @@ function TUniversalInstaller.AddPackages(sl:TStringList): boolean;
if (PackagePath='') then continue;
if NOT FileExists(PackagePath) then
begin
infoln('TUniversalInstaller: package '+ExtractFileName(PackagePath)+' not found ... skipping.',etError);
infoln('TUniversalInstaller: package '+ExtractFileName(PackagePath)+' not found ... skipping.',etWarning);
continue;
end;

Expand Down

0 comments on commit 9f5b784

Please sign in to comment.