All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.uuid.ext.JavaUtilLogger Maven / Gradle / Ivy

Go to download

Java UUID Generator (JUG) is a Java library for generating Universally Unique IDentifiers, UUIDs (see http://en.wikipedia.org/wiki/UUID). It can be used either as a component in a bigger application, or as a standalone command line tool. JUG generates UUIDs according to the IETF UUID draft specification. JUG supports all 3 official UUID generation methods.

There is a newer version: 5.0.0
Show newest version
/* JUG Java Uuid Generator
 *
 * Copyright (c) 2002- Tatu Saloranta, [email protected]
 *
 * Licensed under the License specified in the file LICENSE which is
 * included with the source code.
 * You may not use this file except in compliance with the License.
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.fasterxml.uuid.ext;

import java.io.*;

//import com.fasterxml.uuid.Logger;

/**
 * Simple wrapper that allows easy connecting of JUG logging into JDK 1.4+
 * logging implementation (aka "java.util.logging" aka "JUL".
 *

* Note: using this class requires JDK 1.4 or above. */ public class JavaUtilLogger extends com.fasterxml.uuid.Logger { private java.util.logging.Logger mPeer; private JavaUtilLogger(java.util.logging.Logger peer) { mPeer = peer; } /** * Static method to call to make JUG use to proxy all of its logging * through the specified j.u.l Logger instance. *

* Method will create a simple wrapper, and call * {@link com.fasterxml.uuid.Logger#setLogger} with the wrapper as * the argument. This will then re-direct logging from the previously * defined Logger (which initially is the simple JUG logger) to the * new wrapper, which routes logging messages to the log4j peer Logger * instance. */ public static void connectToJavaUtilLogging(java.util.logging.Logger peer) { JavaUtilLogger logger = new JavaUtilLogger(peer); // This is static method of the base class... setLogger(logger); } /** * Static method to call to make JUG use a log4j proxy all of its logging * through a j.u.l Logger constructed to correspond with * com.fasterxml.uuid.Logger class (this generally determines * j.u.l category output etc settings). *

* Method will create a simple wrapper, and call * {@link com.fasterxml.uuid.Logger#setLogger} with the wrapper as * the argument. This will then re-direct logging from the previously * defined Logger (which initially is the simple JUG logger) to the * new wrapper, which routes logging messages to the j.u.l peer Logger * instance. */ public static void connectToJavaUtilLogging() { connectToJavaUtilLogging(java.util.logging.Logger.getLogger(com.fasterxml.uuid.Logger.class.getName())); } /* ///////////////////////////////////////////////////////////// // Overridable implementation/instance methods from // Logger base class ///////////////////////////////////////////////////////////// */ // // // Config // This is ok; let's just use base class functionality: //protected void doSetLogLevel(int ll); /** * Note: this method is meaningless with log4j, since it has more * advanced output mapping and filtering mechanisms. As such, it's * a no-op */ protected void doSetOutput(PrintStream str) { // Could also throw an Error.. but for now, let's log instead... mPeer.warning("doSetOutput(PrintStream) called on "+getClass()+" instance, ignoring."); } /** * Note: this method is meaningless with log4j, since it has more * advanced output mapping and filtering mechanisms. As such, it's * a no-op */ protected void doSetOutput(Writer w) { mPeer.warning("doSetOutput(Writer) called on "+getClass()+" instance, ignoring."); } // // // Logging methods protected void doLogInfo(String msg) { if (_logLevel <= LOG_INFO_AND_ABOVE) { mPeer.info(msg); } } protected void doLogWarning(String msg) { if (_logLevel <= LOG_WARNING_AND_ABOVE) { mPeer.warning(msg); } } protected void doLogError(String msg) { /* Hmmh. JUL doesn't have error... and SEVERE is bit drastic. But, * well, let's use that for ERRORs for now. */ if (_logLevel <= LOG_ERROR_AND_ABOVE) { mPeer.severe(msg); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy