summaryrefslogtreecommitdiff
path: root/packages/fpmkunit
diff options
context:
space:
mode:
authorjoost <joost@3ad0048d-3df7-0310-abae-a5850022a9f2>2010-05-05 19:10:42 +0000
committerjoost <joost@3ad0048d-3df7-0310-abae-a5850022a9f2>2010-05-05 19:10:42 +0000
commit6e6be95cd755761c30ce53f16009ff19150260ce (patch)
tree320c83db9531dc590ebad2b2d413d1f6d54b0a54 /packages/fpmkunit
parentbbbb6d8f1fbd4741486031dd5db5aeadf9cba8f5 (diff)
downloadfpc-6e6be95cd755761c30ce53f16009ff19150260ce.tar.gz
* Changed missing file on clean from warning to debug message, bug 13517
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@15230 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/fpmkunit')
-rw-r--r--packages/fpmkunit/src/fpmkunit.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/fpmkunit/src/fpmkunit.pp b/packages/fpmkunit/src/fpmkunit.pp
index f2e3717685..fcebbc5d98 100644
--- a/packages/fpmkunit/src/fpmkunit.pp
+++ b/packages/fpmkunit/src/fpmkunit.pp
@@ -986,7 +986,6 @@ ResourceString
SWarnCircularPackageDependency = 'Warning: Circular dependency detected when compiling package %s with package %s';
SWarnFailedToSetTime = 'Warning: Failed to set timestamp on file "%s"';
SWarnFailedToGetTime = 'Warning: Failed to get timestamp from file "%s"';
- SWarnFileDoesNotExist = 'Warning: File "%s" does not exist';
SWarnAttemptingToCompileNonNeutralTarget = 'Warning: Attempting to compile non-neutral target %s';
SWarnSourceFileNotFound = 'Warning: Source file "%s" from package %s not found for %s';
SWarnIncludeFileNotFound = 'Warning: Include file "%s" from package %s not found for %s';
@@ -1035,6 +1034,7 @@ ResourceString
SDbgSearchPath = 'Using %s path "%s"';
SDbgEnterDir = 'Entering directory "%s"';
SDbgPackageChecksumChanged = 'Dependent package %s is modified';
+ SDbgFileDoesNotExist = 'File "%s" does not exist';
// Help messages for usage
SValue = 'Value';
@@ -3158,7 +3158,7 @@ end;
procedure TBuildEngine.SysDeleteFile(Const AFileName : String);
begin
if not FileExists(AFileName) then
- Log(vlWarning,SWarnFileDoesNotExist,[AFileName])
+ Log(vldebug,SDbgFileDoesNotExist,[AFileName])
else If Not DeleteFile(AFileName) then
Error(SErrDeletingFile,[AFileName]);
end;