PoChecker: put debuglns to a correct place.

git-svn-id: trunk@34672 -
This commit is contained in:
juha 2012-01-08 23:13:46 +00:00
parent ed16bfdb50
commit c19d9256e9
2 changed files with 2 additions and 2 deletions

View File

@ -273,9 +273,9 @@ begin
and (PoFamily.ChildName <> FChoosenChildName) then
PoFamily.ChildName := FChoosenChildName;
PoFamily.RunTests(Options, ErrorCount, WarningCount, SL);
if (ErrorCount > 0) or (WarningCount > 0) then
debugln('RunSelectedTests: ',Format(sTotalErrors,[ErrorCount]));
debugln(' ',Format(sTotalWarnings,[WarningCount]));
if (ErrorCount > 0) or (WarningCount > 0) then
begin
SL.Add(Format(sTotalErrors,[ErrorCount]));
SL.Add(Format(sTotalWarnings,[WarningCount]));

View File

@ -283,9 +283,9 @@ begin
and (PoFamily.ChildName <> FChoosenChildName) then
PoFamily.ChildName := FChoosenChildName;
PoFamily.RunTests(Options, ErrorCount, WarningCount, SL);
if (ErrorCount > 0) or (WarningCount > 0) then
debugln('RunSelectedTests: ',Format(sTotalErrors,[ErrorCount]));
debugln(' ',Format(sTotalWarnings,[WarningCount]));
if (ErrorCount > 0) or (WarningCount > 0) then
begin
SL.Add(Format(sTotalErrors,[ErrorCount]));
SL.Add(Format(sTotalWarnings,[WarningCount]));