Package org.objectweb.util.monolog.wrapper.javaLog

Examples of org.objectweb.util.monolog.wrapper.javaLog.Logger


        name = monoLoggerName(name);
        // Search if the logger already exist.
        Object o = manager.getLogger(name);
        if (o == null) {
            // It doesn't exist => creates and adds it
            Logger result = new Logger(name, resName);
            manager.addLogger(result);
            Monolog.debug("Instanciate the logger " + name);

            // In the javadoc of the LogManager, it is said that the caller
            // need to keep a reference to this logger to avoid GC.
View Full Code Here

TOP

Related Classes of org.objectweb.util.monolog.wrapper.javaLog.Logger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.