org.apache.openejb.util.Logger.loadLoggingProperties()方法的使用及代码示例

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

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

Logger.loadLoggingProperties介绍

暂无

代码示例

代码示例来源:origin: org.apache.openejb/openejb-core

  1. public static boolean isLog4jImplied() {
  2. if (null == isLog4j) {
  3. isLog4j = false;
  4. final List<String> locations = new ArrayList<String>();
  5. {
  6. final Properties configFile = log4j(loadLoggingProperties());
  7. final Properties systemProperties = log4j(SystemInstance.get().getProperties());
  8. if (configFile.size() > 0) {
  9. locations.add("conf/logging.properties");
  10. }
  11. if (systemProperties.size() > 0) {
  12. locations.add("Properties overrides");
  13. }
  14. }
  15. if (locations.size() > 0) {
  16. if (exists("org.apache.log4j.Logger")) {
  17. isLog4j = true;
  18. }
  19. }
  20. }
  21. return isLog4j;
  22. }

代码示例来源:origin: org.apache.tomee/openejb-core

  1. public static boolean isLog4jImplied() {
  2. if (null == isLog4j) {
  3. isLog4j = false;
  4. final List<String> locations = new ArrayList<String>();
  5. {
  6. final Properties configFile = log4j(loadLoggingProperties());
  7. final Properties systemProperties = log4j(SystemInstance.get().getProperties());
  8. if (configFile.size() > 0) {
  9. locations.add("conf/logging.properties");
  10. }
  11. if (systemProperties.size() > 0) {
  12. locations.add("Properties overrides");
  13. }
  14. }
  15. if (locations.size() > 0) {
  16. if (exists("org.apache.log4j.Logger")) {
  17. isLog4j = true;
  18. }
  19. }
  20. }
  21. return isLog4j;
  22. }

代码示例来源:origin: org.apache.tomee/openejb-core

  1. private static void checkForIgnoredLog4jConfig() {
  2. if (logStreamFactory.getClass().getName().equals("org.apache.openejb.util.Log4jLogStreamFactory")) {
  3. return;
  4. }
  5. try {
  6. final Properties configFile = log4j(loadLoggingProperties());
  7. final Properties systemProperties = log4j(SystemInstance.get().getProperties());
  8. if (configFile.size() == 0 && systemProperties.size() == 0) {
  9. return;
  10. }
  11. if (systemProperties.size() == 1 && "log4j.configurationFile".equals(systemProperties.stringPropertyNames().iterator().next())) {
  12. // not a logger config but the overall config
  13. // since log4j2 uses it too we can't pollute logs with warnings there for that only
  14. return;
  15. }
  16. final LogStream stream = logStreamFactory.createLogStream(LogCategory.OPENEJB);
  17. stream.warn("Log4j not installed. The following properties will be ignored.");
  18. final String format = "Ignored %s property '%s'";
  19. for (final Object key : configFile.keySet()) {
  20. stream.warn(String.format(format, "conf/logging.properties", key));
  21. }
  22. for (final Object key : systemProperties.keySet()) {
  23. stream.warn(String.format(format, "Property overrides", key));
  24. }
  25. } catch (final Throwable e) {
  26. // added strong catch block just in case
  27. // This check is only a convenience
  28. }
  29. }

代码示例来源:origin: org.apache.openejb/openejb-core

  1. private static void checkForIgnoredLog4jConfig() {
  2. if (logStreamFactory.getClass().getName().equals("org.apache.openejb.util.Log4jLogStreamFactory")) {
  3. return;
  4. }
  5. try {
  6. final Properties configFile = log4j(loadLoggingProperties());
  7. final Properties systemProperties = log4j(SystemInstance.get().getProperties());
  8. if (configFile.size() == 0 && systemProperties.size() == 0) {
  9. return;
  10. }
  11. final LogStream stream = logStreamFactory.createLogStream(LogCategory.OPENEJB);
  12. stream.warn("Log4j not installed. The following properties will be ignored.");
  13. final String format = "Ignored %s property '%s'";
  14. for (final Object key : configFile.keySet()) {
  15. stream.warn(String.format(format, "conf/logging.properties", key));
  16. }
  17. for (final Object key : systemProperties.keySet()) {
  18. stream.warn(String.format(format, "Property overrides", key));
  19. }
  20. } catch (final Throwable e) {
  21. // added strong catch block just in case
  22. // This check is only a convenience
  23. }
  24. }

相关文章