Java Code Examples for com.alibaba.dubbo.common.logger.Logger#info()

The following examples show how to use com.alibaba.dubbo.common.logger.Logger#info() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LogHelper.java    From dubbo3 with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg);
    }
}
 
Example 2
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg, e);
    }
}
 
Example 3
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(e);
    }
}
 
Example 4
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg);
    }
}
 
Example 5
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg, e);
    }
}
 
Example 6
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(e);
    }
}
 
Example 7
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg);
    }
}
 
Example 8
Source File: LogHelper.java    From dubbo3 with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg, e);
    }
}
 
Example 9
Source File: LogHelper.java    From dubbo3 with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(e);
    }
}
 
Example 10
Source File: LogHelper.java    From dubbo-2.6.5 with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg);
    }
}
 
Example 11
Source File: LogHelper.java    From dubbox-hystrix with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg, e);
    }
}
 
Example 12
Source File: LogHelper.java    From dubbox-hystrix with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(e);
    }
}
 
Example 13
Source File: LogHelper.java    From dubbox-hystrix with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg);
    }
}
 
Example 14
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg, e);
    }
}
 
Example 15
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(e);
    }
}
 
Example 16
Source File: LogHelper.java    From dubbox with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg);
    }
}
 
Example 17
Source File: LogHelper.java    From dubbo-2.6.5 with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, String msg, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(msg, e);
    }
}
 
Example 18
Source File: LogHelper.java    From dubbo-2.6.5 with Apache License 2.0 5 votes vote down vote up
public static void info(Logger logger, Throwable e) {
    if (logger == null) {
        return;
    }

    if (logger.isInfoEnabled()) {
        logger.info(e);
    }
}