summaryrefslogtreecommitdiff
path: root/Tools/Source/GenBuild/org/tianocore/build/fpd/FpdParserTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Source/GenBuild/org/tianocore/build/fpd/FpdParserTask.java')
-rw-r--r--Tools/Source/GenBuild/org/tianocore/build/fpd/FpdParserTask.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/Tools/Source/GenBuild/org/tianocore/build/fpd/FpdParserTask.java b/Tools/Source/GenBuild/org/tianocore/build/fpd/FpdParserTask.java
index 1de29ea373..1e3de2a4e6 100644
--- a/Tools/Source/GenBuild/org/tianocore/build/fpd/FpdParserTask.java
+++ b/Tools/Source/GenBuild/org/tianocore/build/fpd/FpdParserTask.java
@@ -785,12 +785,6 @@ public class FpdParserTask extends Task {
public void collectPCDInformation() {
CollectPCDAction collectAction = new CollectPCDAction ();
//
- // Set memory database log file path. It should be put into same directory with FPD file.
- //
- GlobalData.getPCDMemoryDBManager().setLogFileName(
- fpdFilename.getPath() + ".PCDMemroyDatabaseLog.txt"
- );
- //
// Collect all PCD information from FPD to MSA, and get help information from SPD.
// These all information will be stored into memory database for future usage such
// as autogen.
@@ -802,7 +796,7 @@ public class FpdParserTask extends Task {
ActionMessage.MAX_MESSAGE_LEVEL
);
} catch (Exception exp) {
- throw new BuildException (exp.getMessage());
+ throw new BuildException (String.format("Fail to do PCD preprocess from FPD file, the cause is %s", exp.getMessage()));
}
}
}