summaryrefslogtreecommitdiff
path: root/Tools/Source/GenBuild/org/tianocore/build/global/GenBuildLogger.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Source/GenBuild/org/tianocore/build/global/GenBuildLogger.java')
-rw-r--r--Tools/Source/GenBuild/org/tianocore/build/global/GenBuildLogger.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/Tools/Source/GenBuild/org/tianocore/build/global/GenBuildLogger.java b/Tools/Source/GenBuild/org/tianocore/build/global/GenBuildLogger.java
new file mode 100644
index 000000000..4c179b8fd
--- /dev/null
+++ b/Tools/Source/GenBuild/org/tianocore/build/global/GenBuildLogger.java
@@ -0,0 +1,36 @@
+/*++
+
+Copyright (c) 2006, Intel Corporation
+All rights reserved. This program and the accompanying materials
+are licensed and made available under the terms and conditions of the BSD License
+which accompanies this distribution. The full text of the license may be found at
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+Module Name:
+ GenBuildLogger.java
+
+Abstract:
+
+--*/
+
+package org.tianocore.build.global;
+import org.apache.tools.ant.Project;
+import org.tianocore.logger.LogMethod;
+
+public class GenBuildLogger implements LogMethod {
+ private Project project;
+ public GenBuildLogger(Project project) {
+ this.project = project;
+
+ }
+
+ public void putMessage(Object msgSource, int msgLevel, String msg) {
+ if (this.project != null){
+ this.project.log(msg, Project.MSG_INFO);
+ }
+
+ }
+} \ No newline at end of file