freemarker.log.Logger.isInfoEnabled()方法的使用及代码示例

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

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

Logger.isInfoEnabled介绍

[英]Returns true if this logger will log informational messages.
[中]如果此记录器将记录信息性消息,则返回true。

代码示例

代码示例来源:origin: org.freemarker/freemarker

  1. private void onSameNameClassesDetected(String className) {
  2. // TODO: This behavior should be pluggable, as in environments where
  3. // some classes are often reloaded or multiple versions of the
  4. // same class is normal (OSGi), this will drop the cache contents
  5. // too often.
  6. if (LOG.isInfoEnabled()) {
  7. LOG.info(
  8. "Detected multiple classes with the same name, \"" + className +
  9. "\". Assuming it was a class-reloading. Clearing class introspection " +
  10. "caches to release old data.");
  11. }
  12. forcedClearCache();
  13. }

代码示例来源:origin: org.freemarker/freemarker

  1. } else {
  2. if (obj != null) {
  3. if (LOG.isInfoEnabled()) {
  4. LOG.info("Overwriting value [" + obj + "] for " +
  5. " key '" + name + "' with [" + method +

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.freemarker

  1. private void onSameNameClassesDetected(String className) {
  2. // TODO: This behavior should be pluggable, as in environments where
  3. // some classes are often reloaded or multiple versions of the
  4. // same class is normal (OSGi), this will drop the cache contents
  5. // too often.
  6. if (LOG.isInfoEnabled()) {
  7. LOG.info(
  8. "Detected multiple classes with the same name, \"" + className +
  9. "\". Assuming it was a class-reloading. Clearing class introspection " +
  10. "caches to release old data.");
  11. }
  12. forcedClearCache();
  13. }

代码示例来源:origin: org.freemarker/freemarker-gae

  1. private void onSameNameClassesDetected(String className) {
  2. // TODO: This behavior should be pluggable, as in environments where
  3. // some classes are often reloaded or multiple versions of the
  4. // same class is normal (OSGi), this will drop the cache contents
  5. // too often.
  6. if (LOG.isInfoEnabled()) {
  7. LOG.info(
  8. "Detected multiple classes with the same name, \"" + className +
  9. "\". Assuming it was a class-reloading. Clearing class introspection " +
  10. "caches to release old data.");
  11. }
  12. forcedClearCache();
  13. }

代码示例来源:origin: org.freemarker/com.springsource.freemarker

  1. private void introspectClassInternal(Class clazz)
  2. {
  3. String className = clazz.getName();
  4. if(cachedClassNames.contains(className))
  5. {
  6. if(logger.isInfoEnabled())
  7. {
  8. logger.info("Detected a reloaded class [" + className +
  9. "]. Clearing BeansWrapper caches.");
  10. }
  11. // Class reload detected, throw away caches
  12. classCache.clear();
  13. cachedClassNames = new HashSet();
  14. synchronized(this)
  15. {
  16. modelCache.clearCache();
  17. }
  18. staticModels.clearCache();
  19. if(enumModels != null) {
  20. enumModels.clearCache();
  21. }
  22. }
  23. classCache.put(clazz, populateClassMap(clazz));
  24. cachedClassNames.add(className);
  25. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.freemarker

  1. } else {
  2. if (obj != null) {
  3. if (LOG.isInfoEnabled()) {
  4. LOG.info("Overwriting value [" + obj + "] for " +
  5. " key '" + name + "' with [" + method +

代码示例来源:origin: org.freemarker/freemarker-gae

  1. } else {
  2. if (obj != null) {
  3. if (LOG.isInfoEnabled()) {
  4. LOG.info("Overwriting value [" + obj + "] for " +
  5. " key '" + name + "' with [" + method +

相关文章