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

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

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

Logger.info介绍

[英]Logs an informational message.
[中]记录一条信息性消息。

代码示例

代码示例来源: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. private static ExpressionFactory tryExpressionFactoryImplementation(String packagePrefix) {
  2. String className = packagePrefix + ".el.ExpressionFactoryImpl";
  3. try {
  4. Class cl = ClassUtil.forName(className);
  5. if (ExpressionFactory.class.isAssignableFrom(cl)) {
  6. LOG.info("Using " + className + " as implementation of " +
  7. ExpressionFactory.class.getName());
  8. return (ExpressionFactory) cl.newInstance();
  9. }
  10. LOG.warn("Class " + className + " does not implement " +
  11. ExpressionFactory.class.getName());
  12. } catch (ClassNotFoundException e) {
  13. } catch (Exception e) {
  14. LOG.error("Failed to instantiate " + className, e);
  15. }
  16. return null;
  17. }

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

  1. if (obj != null) {
  2. if (LOG.isInfoEnabled()) {
  3. LOG.info("Overwriting value [" + obj + "] for " +
  4. " key '" + name + "' with [" + method +
  5. "] in static model for " + clazz.getName());

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

  1. LOG.info("Failed to check if finetuneMethodAppearance is overidden in " + thisClass.getName()
  2. + "; acting like if it was, but this way it won't utilize the shared class introspection "
  3. + "cache.",

代码示例来源: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.apache.servicemix.bundles/org.apache.servicemix.bundles.freemarker

  1. private static ExpressionFactory tryExpressionFactoryImplementation(String packagePrefix) {
  2. String className = packagePrefix + ".el.ExpressionFactoryImpl";
  3. try {
  4. Class cl = ClassUtil.forName(className);
  5. if (ExpressionFactory.class.isAssignableFrom(cl)) {
  6. LOG.info("Using " + className + " as implementation of " +
  7. ExpressionFactory.class.getName());
  8. return (ExpressionFactory) cl.newInstance();
  9. }
  10. LOG.warn("Class " + className + " does not implement " +
  11. ExpressionFactory.class.getName());
  12. } catch (ClassNotFoundException e) {
  13. } catch (Exception e) {
  14. LOG.error("Failed to instantiate " + className, e);
  15. }
  16. return null;
  17. }

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

  1. private static ExpressionFactory tryExpressionFactoryImplementation(String packagePrefix) {
  2. String className = packagePrefix + ".el.ExpressionFactoryImpl";
  3. try {
  4. Class cl = ClassUtil.forName(className);
  5. if (ExpressionFactory.class.isAssignableFrom(cl)) {
  6. LOG.info("Using " + className + " as implementation of " +
  7. ExpressionFactory.class.getName());
  8. return (ExpressionFactory) cl.newInstance();
  9. }
  10. LOG.warn("Class " + className + " does not implement " +
  11. ExpressionFactory.class.getName());
  12. } catch (ClassNotFoundException e) {
  13. } catch (Exception e) {
  14. LOG.error("Failed to instantiate " + className, e);
  15. }
  16. return null;
  17. }

代码示例来源: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/com.springsource.freemarker

  1. private static ExpressionFactory tryExpressionFactoryImplementation(String packagePrefix) {
  2. String className = packagePrefix + ".el.ExpressionFactoryImpl";
  3. try {
  4. Class cl = ClassUtil.forName(className);
  5. if(ExpressionFactory.class.isAssignableFrom(cl)) {
  6. logger.info("Using " + className + " as implementation of " +
  7. ExpressionFactory.class.getName());
  8. return (ExpressionFactory)cl.newInstance();
  9. }
  10. logger.warn("Class " + className + " does not implement " +
  11. ExpressionFactory.class.getName());
  12. }
  13. catch(ClassNotFoundException e) {
  14. }
  15. catch(Exception e) {
  16. logger.error("Failed to instantiate " + className, e);
  17. }
  18. return null;
  19. }

代码示例来源: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.freemarker/com.springsource.freemarker

  1. logger.info("Overwriting value [" + obj + "] for " +
  2. " key '" + name + "' with [" + method +
  3. "] in static model for " + clazz.getName());

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

  1. if (obj != null) {
  2. if (LOG.isInfoEnabled()) {
  3. LOG.info("Overwriting value [" + obj + "] for " +
  4. " key '" + name + "' with [" + method +
  5. "] in static model for " + clazz.getName());

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

  1. if (obj != null) {
  2. if (LOG.isInfoEnabled()) {
  3. LOG.info("Overwriting value [" + obj + "] for " +
  4. " key '" + name + "' with [" + method +
  5. "] in static model for " + clazz.getName());

代码示例来源:origin: bedatadriven/activityinfo

  1. @Override
  2. public List<AdminGeo> getGeometries(int adminLevelId) {
  3. try {
  4. List<AdminGeo> list = Lists.newArrayList();
  5. DataInputStream in = new DataInputStream(
  6. openWkb(adminLevelId));
  7. WKBReader wkbReader = new WKBReader(geometryFactory);
  8. int count = in.readInt();
  9. for (int i = 0; i != count; ++i) {
  10. int id = in.readInt();
  11. LOGGER.info("Reading geometry for admin entity " + id);
  12. Geometry geometry = wkbReader.read(new DataInputInStream(in));
  13. list.add(new AdminGeo(id, geometry));
  14. }
  15. return list;
  16. } catch (IOException | ParseException e) {
  17. throw new RuntimeException(e);
  18. }
  19. }

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

  1. LOG.info("Failed to check if finetuneMethodAppearance is overidden in " + thisClass.getName()
  2. + "; acting like if it was, but this way it won't utilize the shared class introspection "
  3. + "cache.",

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

  1. LOG.info("Failed to check if finetuneMethodAppearance is overidden in " + thisClass.getName()
  2. + "; acting like if it was, but this way it won't utilize the shared class introspection "
  3. + "cache.",

相关文章