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

com.alibaba.rocketmq.research.logback.LogbackTest Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
/**
 * $Id: LogbackTest.java 1831 2013-05-16 01:39:51Z shijia.wxr $
 */
package com.alibaba.rocketmq.research.logback;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;


/**
 * @author shijia.wxr
 */
public class LogbackTest {
    public final static Logger log = LoggerFactory.getLogger(LogbackTest.class);


    /**
     * @param args
     */
    public static void main(String[] args) {
        int a = 100;
        long b = 300L;
        double c = 99.8;

        log.info("a {} b {} c {}", a, b, c);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy