com.jfinal.log.Log.debug()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(232)

本文整理了Java中com.jfinal.log.Log.debug()方法的一些代码示例,展示了Log.debug()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Log.debug()方法的具体详情如下:
包路径:com.jfinal.log.Log
类名称:Log
方法名:debug

Log.debug介绍

暂无

代码示例

代码示例来源:origin: jfinal/jfinal

public static void debug(String message) {
  Holder.log.debug(message);
}

代码示例来源:origin: jfinal/jfinal

public static void debug(String message, Throwable t) {
  Holder.log.debug(message, t);
}

代码示例来源:origin: jfinal/jfinal

static Cache getOrAddCache(String cacheName) {
  Cache cache = cacheManager.getCache(cacheName);
  if (cache == null) {
    synchronized(CacheKit.class) {
      cache = cacheManager.getCache(cacheName);
      if (cache == null) {
        log.warn("Could not find cache config [" + cacheName + "], using default.");
        cacheManager.addCacheIfAbsent(cacheName);
        cache = cacheManager.getCache(cacheName);
        log.debug("Cache [" + cacheName + "] started.");
      }
    }
  }
  return cache;
}

代码示例来源:origin: com.jfinal/jfinal

public static void debug(String message) {
  Holder.log.debug(message);
}

代码示例来源:origin: com.jfinal/jfinal

public static void debug(String message, Throwable t) {
  Holder.log.debug(message, t);
}

代码示例来源:origin: com.jfinal/jfinal-weixin

public static ApiConfig getApiConfig(String appId) {
  log.debug("appId: " + appId);
  ApiConfig cfg = CFG_MAP.get(appId);
  if (cfg == null)
    throw new IllegalStateException("需事先调用 ApiConfigKit.putApiConfig(apiConfig) 将 appId对应的 ApiConfig 对象存入," +
        "如JFinalConfig.afterJFinalStart()中调用, 才可以使用 ApiConfigKit.getApiConfig() 系列方法");
  return cfg;
}

代码示例来源:origin: Javen205/jfinal_qyweixin

public static ApiConfig getApiConfig(String corpId) {
  log.debug("corpId: " + corpId);
  ApiConfig cfg = CFG_MAP.get(corpId);
  if (cfg == null)
    throw new IllegalStateException("需事先调用 ApiConfigKit.putApiConfig(apiConfig) 将 corpId对应的 ApiConfig 对象存入," +
        "如JFinalConfig.afterJFinalStart()中调用, 才可以使用 ApiConfigKit.getApiConfig() 系列方法");
  return cfg;
}

代码示例来源:origin: com.jfinal/jfinal

static Cache getOrAddCache(String cacheName) {
  Cache cache = cacheManager.getCache(cacheName);
  if (cache == null) {
    synchronized(CacheKit.class) {
      cache = cacheManager.getCache(cacheName);
      if (cache == null) {
        log.warn("Could not find cache config [" + cacheName + "], using default.");
        cacheManager.addCacheIfAbsent(cacheName);
        cache = cacheManager.getCache(cacheName);
        log.debug("Cache [" + cacheName + "] started.");
      }
    }
  }
  return cache;
}

代码示例来源:origin: com.jfinal/jfinal-weixin

log.debug("wxaapp pushOrder xmlResult:" + xmlResult);

相关文章