Package org.tamacat.log.impl

Examples of org.tamacat.log.impl.JDKLogger


    @Before
    public void setUp() throws Exception {
    System.setProperty("java.util.logging.config.file", "logging.properties");

        logger = new JDKLogger("org.tamacat.log.JDKLoggerTest");
    }
View Full Code Here


        if (logger == null) {
            try {
                logger = SELF.loadLogger(categoryName);
                if (logger != null) manager.put(categoryName, logger);
            } catch (Exception e) {
                new JDKLogger(LogFactory.class.getName()).error(e.getMessage(), e);
            }
        }
        return logger;
    }
View Full Code Here

TOP

Related Classes of org.tamacat.log.impl.JDKLogger

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.