X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Tools%2FSource%2FCommon%2Forg%2Ftianocore%2Flogger%2FDefaultLogger.java;fp=Tools%2FSource%2FCommon%2Forg%2Ftianocore%2Flogger%2FDefaultLogger.java;h=4bec8e52b4983e58a0c68076ab5be9e6b98e4ddd;hb=652f4bd848a4e36b991c1490eb516ff0f5b1687a;hp=0000000000000000000000000000000000000000;hpb=0ffa12863e9e60cfd1900e3a83b21f32f89afdf2;p=mirror_edk2.git diff --git a/Tools/Source/Common/org/tianocore/logger/DefaultLogger.java b/Tools/Source/Common/org/tianocore/logger/DefaultLogger.java new file mode 100644 index 0000000000..4bec8e52b4 --- /dev/null +++ b/Tools/Source/Common/org/tianocore/logger/DefaultLogger.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: + DefaultLogger.java + +Abstract: + +--*/ + +package org.tianocore.logger; +import java.util.logging.Level; +import java.util.logging.Logger; + +class DefaultLogger implements LogMethod { + private Logger logger = Logger.global; + private static Level[] levelMap = { + Level.SEVERE, Level.WARNING, Level.INFO, Level.FINE, Level.ALL + }; + + public DefaultLogger() { + + } + + public void putMessage(Object msgSource, int msgLevel, String msg) { + logger.log(levelMap[msgLevel], msg); + } +} \ No newline at end of file