summaryrefslogtreecommitdiff
path: root/Tools/Java/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Java/Source')
-rw-r--r--Tools/Java/Source/CheckTools/src/org/tianocore/CheckTools/ToolChecks.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/Tools/Java/Source/CheckTools/src/org/tianocore/CheckTools/ToolChecks.java b/Tools/Java/Source/CheckTools/src/org/tianocore/CheckTools/ToolChecks.java
index 0c0c936595..34c5a4c015 100644
--- a/Tools/Java/Source/CheckTools/src/org/tianocore/CheckTools/ToolChecks.java
+++ b/Tools/Java/Source/CheckTools/src/org/tianocore/CheckTools/ToolChecks.java
@@ -121,10 +121,9 @@ public class ToolChecks {
File testPath = new File(path);
if (!testPath.exists()) {
if (!props[1].trim().contentEquals(lastErrTag))
- errLog.add(" -- ERROR: Tool Chain Tag Name: " + props[1].trim() + " is invalid!");
- // System.out.println(" +++++ ERROR: Tool Chain: " + props[1].trim() + " is invalid!");
- errLog.add(" Tool Code: [" + props[3].trim() + "] Path: " + path + " does not exist!");
- // System.out.println(" Tool: " + props[3].trim() + " Path: " + path + " does not exist!");
+ errLog.add(" -- WARNING: Tool Chain Tag Name: " + props[1].trim() + " is NOT valid!");
+ if (VERBOSE > 0)
+ errLog.add(" Tool Code: [" + props[3].trim() + "] Path: " + path + " does not exist!");
retCode = 1;
lastErrTag = props[1].trim();
} else {