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

com.aliyun.openservices.log.log4j2.example.Log4j2AppenderExample Maven / Gradle / Ivy

There is a newer version: 0.1.14
Show newest version
package com.aliyun.openservices.log.log4j2.example;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

/**
 * Created by brucewu on 2018/1/8.
 */
public class Log4j2AppenderExample {

    private static final Logger LOGGER = LogManager.getLogger(Log4j2AppenderExample.class);

    public static void main(String[] args) {
        LOGGER.trace("log4j2 trace log");
        LOGGER.debug("log4j2 debug log");
        LOGGER.info("log4j2 info log");
        LOGGER.warn("log4j2 warn log");
        LOGGER.error("log4j2 error log", new RuntimeException("Runtime Exception"));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy