Java Code Examples for com.alibaba.dubbo.common.logger.Logger#debug()
The following examples show how to use
com.alibaba.dubbo.common.logger.Logger#debug() .
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 |
public static void debug(Logger logger, String msg) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg); } }
Example 2
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg, e); } }
Example 3
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(e); } }
Example 4
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg); } }
Example 5
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg, e); } }
Example 6
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(e); } }
Example 7
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg); } }
Example 8
Source File: LogHelper.java From dubbo3 with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg, e); } }
Example 9
Source File: LogHelper.java From dubbo3 with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(e); } }
Example 10
Source File: LogHelper.java From dubbo-2.6.5 with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg); } }
Example 11
Source File: LogHelper.java From dubbox-hystrix with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg, e); } }
Example 12
Source File: LogHelper.java From dubbox-hystrix with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(e); } }
Example 13
Source File: LogHelper.java From dubbox-hystrix with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg); } }
Example 14
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg, e); } }
Example 15
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(e); } }
Example 16
Source File: LogHelper.java From dubbox with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg); } }
Example 17
Source File: LogHelper.java From dubbo-2.6.5 with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, String msg, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(msg, e); } }
Example 18
Source File: LogHelper.java From dubbo-2.6.5 with Apache License 2.0 | 5 votes |
public static void debug(Logger logger, Throwable e) { if (logger == null) { return; } if (logger.isDebugEnabled()) { logger.debug(e); } }