Package org.apache.logging.log4j.message

Examples of org.apache.logging.log4j.message.FormattedMessageFactory


    public ApacheLogging() {
        logger = LogManager.getRootLogger();
    }

    public ApacheLogging(final String name) {
        logger = LogManager.getLogger(name, new FormattedMessageFactory());
    }
View Full Code Here


    public ApacheLogging(final String name) {
        logger = LogManager.getLogger(name, new FormattedMessageFactory());
    }

    public ApacheLogging(final Class<?> datClass) {
        logger = LogManager.getLogger(datClass, new FormattedMessageFactory());
    }
View Full Code Here

TOP

Related Classes of org.apache.logging.log4j.message.FormattedMessageFactory

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.