org.slf4j.helpers.Util.report()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(10.2k)|赞(0)|评价(0)|浏览(107)

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

Util.report介绍

暂无

代码示例

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

private static void emitReplayWarning(int eventCount) {
  Util.report("A number (" + eventCount + ") of logging calls during the initialization phase have been intercepted and are");
  Util.report("now being replayed. These are subject to the filtering rules of the underlying logging system.");
  Util.report("See also " + REPLAY_URL);
}

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

private static void emitSubstitutionWarning() {
  Util.report("The following set of substitute loggers may have been accessed");
  Util.report("during the initialization phase. Logging calls during this");
  Util.report("phase were not honored. However, subsequent logging calls to these");
  Util.report("loggers will work as normally expected.");
  Util.report("See also " + SUBSTITUTE_LOGGER_URL);
}

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

static void failedBinding(Throwable t) {
  INITIALIZATION_STATE = FAILED_INITIALIZATION;
  Util.report("Failed to instantiate SLF4J LoggerFactory", t);
}

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

private static void emitSubstitutionWarning() {
  Util.report("The following set of substitute loggers may have been accessed");
  Util.report("during the initialization phase. Logging calls during this");
  Util.report("phase were not honored. However, subsequent logging calls to these");
  Util.report("loggers will work as normally expected.");
  Util.report("See also " + SUBSTITUTE_LOGGER_URL);
}

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

private static void emitReplayWarning(int eventCount) {
  Util.report("A number (" + eventCount + ") of logging calls during the initialization phase have been intercepted and are");
  Util.report("now being replayed. These are subject to the filtering rules of the underlying logging system.");
  Util.report("See also " + REPLAY_URL);
}

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

static void failedBinding(Throwable t) {
  INITIALIZATION_STATE = FAILED_INITIALIZATION;
  Util.report("Failed to instantiate SLF4J LoggerFactory", t);
}

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

/**
 * Prints a warning message on the console if multiple bindings were found
 * on the class path. No reporting is done otherwise.
 * 
 */
private static void reportMultipleBindingAmbiguity(Set<URL> binderPathSet) {
  if (isAmbiguousStaticLoggerBinderPathSet(binderPathSet)) {
    Util.report("Class path contains multiple SLF4J bindings.");
    for (URL path : binderPathSet) {
      Util.report("Found binding in [" + path + "]");
    }
    Util.report("See " + MULTIPLE_BINDINGS_URL + " for an explanation.");
  }
}

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

private static void safeObjectAppend(StringBuilder sbuf, Object o) {
  try {
    String oAsString = o.toString();
    sbuf.append(oAsString);
  } catch (Throwable t) {
    Util.report("SLF4J: Failed toString() invocation on an object of type [" + o.getClass().getName() + "]", t);
    sbuf.append("[FAILED toString()]");
  }
}

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

private final static void versionSanityCheck() {
  try {
    String requested = StaticLoggerBinder.REQUESTED_API_VERSION;
    boolean match = false;
    for (String aAPI_COMPATIBILITY_LIST : API_COMPATIBILITY_LIST) {
      if (requested.startsWith(aAPI_COMPATIBILITY_LIST)) {
        match = true;
      }
    }
    if (!match) {
      Util.report("The requested version " + requested + " by your slf4j binding is not compatible with "
              + Arrays.asList(API_COMPATIBILITY_LIST).toString());
      Util.report("See " + VERSION_MISMATCH + " for further details.");
    }
  } catch (java.lang.NoSuchFieldError nsfe) {
    // given our large user base and SLF4J's commitment to backward
    // compatibility, we cannot cry here. Only for implementations
    // which willingly declare a REQUESTED_API_VERSION field do we
    // emit compatibility warnings.
  } catch (Throwable e) {
    // we should never reach here
    Util.report("Unexpected problem occured during version sanity check", e);
  }
}

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

/**
 * Prints a warning message on the console if multiple bindings were found
 * on the class path. No reporting is done otherwise.
 * 
 */
private static void reportMultipleBindingAmbiguity(Set<URL> binderPathSet) {
  if (isAmbiguousStaticLoggerBinderPathSet(binderPathSet)) {
    Util.report("Class path contains multiple SLF4J bindings.");
    for (URL path : binderPathSet) {
      Util.report("Found binding in [" + path + "]");
    }
    Util.report("See " + MULTIPLE_BINDINGS_URL + " for an explanation.");
  }
}

代码示例来源:origin: org.slf4j/slf4j-log4j12

private StaticLoggerBinder() {
  loggerFactory = new Log4jLoggerFactory();
  try {
    @SuppressWarnings("unused")
    Level level = Level.TRACE;
  } catch (NoSuchFieldError nsfe) {
    Util.report("This version of SLF4J requires log4j version 1.2.12 or later. See also http://www.slf4j.org/codes.html#log4j_version");
  }
}

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

private static void safeObjectAppend(StringBuilder sbuf, Object o) {
  try {
    String oAsString = o.toString();
    sbuf.append(oAsString);
  } catch (Throwable t) {
    Util.report("SLF4J: Failed toString() invocation on an object of type [" + o.getClass().getName() + "]", t);
    sbuf.append("[FAILED toString()]");
  }
}

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

static Set<URL> findPossibleStaticLoggerBinderPathSet() {
  // use Set instead of list in order to deal with bug #138
  // LinkedHashSet appropriate here because it preserves insertion order
  // during iteration
  Set<URL> staticLoggerBinderPathSet = new LinkedHashSet<URL>();
  try {
    ClassLoader loggerFactoryClassLoader = LoggerFactory.class.getClassLoader();
    Enumeration<URL> paths;
    if (loggerFactoryClassLoader == null) {
      paths = ClassLoader.getSystemResources(STATIC_LOGGER_BINDER_PATH);
    } else {
      paths = loggerFactoryClassLoader.getResources(STATIC_LOGGER_BINDER_PATH);
    }
    while (paths.hasMoreElements()) {
      URL path = paths.nextElement();
      staticLoggerBinderPathSet.add(path);
    }
  } catch (IOException ioe) {
    Util.report("Error getting resources from path", ioe);
  }
  return staticLoggerBinderPathSet;
}

代码示例来源:origin: ch.qos.logback/logback-classic

/**
 * Package access for testing purposes.
 */
void init() {
  try {
    try {
      new ContextInitializer(defaultLoggerContext).autoConfig();
    } catch (JoranException je) {
      Util.report("Failed to auto configure default logger context", je);
    }
    // logback-292
    if (!StatusUtil.contextHasStatusListener(defaultLoggerContext)) {
      StatusPrinter.printInCaseOfErrorsOrWarnings(defaultLoggerContext);
    }
    contextSelectorBinder.init(defaultLoggerContext, KEY);
    initialized = true;
  } catch (Exception t) { // see LOGBACK-1159
    Util.report("Failed to instantiate [" + LoggerContext.class.getName() + "]", t);
  }
}

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

private static void reportActualBinding(Set<URL> binderPathSet) {
  // binderPathSet can be null under Android
  if (binderPathSet != null && isAmbiguousStaticLoggerBinderPathSet(binderPathSet)) {
    Util.report("Actual binding is of type [" + StaticLoggerBinder.getSingleton().getLoggerFactoryClassStr() + "]");
  }
}

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

private static OutputChoice computeOutputChoice(String logFile, boolean cacheOutputStream) {
  if ("System.err".equalsIgnoreCase(logFile))
    if (cacheOutputStream)
      return new OutputChoice(OutputChoiceType.CACHED_SYS_ERR);
    else
      return new OutputChoice(OutputChoiceType.SYS_ERR);
  else if ("System.out".equalsIgnoreCase(logFile)) {
    if (cacheOutputStream)
      return new OutputChoice(OutputChoiceType.CACHED_SYS_OUT);
    else
      return new OutputChoice(OutputChoiceType.SYS_OUT);
  } else {
    try {
      FileOutputStream fos = new FileOutputStream(logFile);
      PrintStream printStream = new PrintStream(fos);
      return new OutputChoice(printStream);
    } catch (FileNotFoundException e) {
      Util.report("Could not open [" + logFile + "]. Defaulting to System.err", e);
      return new OutputChoice(OutputChoiceType.SYS_ERR);
    }
  }
}

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

private static void reportActualBinding(Set<URL> binderPathSet) {
  // binderPathSet can be null under Android
  if (binderPathSet != null && isAmbiguousStaticLoggerBinderPathSet(binderPathSet)) {
    Util.report("Actual binding is of type [" + StaticLoggerBinder.getSingleton().getLoggerFactoryClassStr() + "]");
  }
}

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

private static void replaySingleEvent(SubstituteLoggingEvent event) {
  if (event == null)
    return;
  SubstituteLogger substLogger = event.getLogger();
  String loggerName = substLogger.getName();
  if (substLogger.isDelegateNull()) {
    throw new IllegalStateException("Delegate logger cannot be null at this state.");
  }
  if (substLogger.isDelegateNOP()) {
    // nothing to do
  } else if (substLogger.isDelegateEventAware()) {
    substLogger.log(event);
  } else {
    Util.report(loggerName);
  }
}

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

private static void replaySingleEvent(SubstituteLoggingEvent event) {
  if (event == null)
    return;
  SubstituteLogger substLogger = event.getLogger();
  String loggerName = substLogger.getName();
  if (substLogger.isDelegateNull()) {
    throw new IllegalStateException("Delegate logger cannot be null at this state.");
  }
  if (substLogger.isDelegateNOP()) {
    // nothing to do
  } else if (substLogger.isDelegateEventAware()) {
    substLogger.log(event);
  } else {
    Util.report(loggerName);
  }
}

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

void init() {
  loadProperties();
  String defaultLogLevelString = getStringProperty(SimpleLogger.DEFAULT_LOG_LEVEL_KEY, null);
  if (defaultLogLevelString != null)
    defaultLogLevel = stringToLevel(defaultLogLevelString);
  showLogName = getBooleanProperty(SimpleLogger.SHOW_LOG_NAME_KEY, SimpleLoggerConfiguration.SHOW_LOG_NAME_DEFAULT);
  showShortLogName = getBooleanProperty(SimpleLogger.SHOW_SHORT_LOG_NAME_KEY, SHOW_SHORT_LOG_NAME_DEFAULT);
  showDateTime = getBooleanProperty(SimpleLogger.SHOW_DATE_TIME_KEY, SHOW_DATE_TIME_DEFAULT);
  showThreadName = getBooleanProperty(SimpleLogger.SHOW_THREAD_NAME_KEY, SHOW_THREAD_NAME_DEFAULT);
  dateTimeFormatStr = getStringProperty(SimpleLogger.DATE_TIME_FORMAT_KEY, DATE_TIME_FORMAT_STR_DEFAULT);
  levelInBrackets = getBooleanProperty(SimpleLogger.LEVEL_IN_BRACKETS_KEY, LEVEL_IN_BRACKETS_DEFAULT);
  warnLevelString = getStringProperty(SimpleLogger.WARN_LEVEL_STRING_KEY, WARN_LEVELS_STRING_DEFAULT);
  logFile = getStringProperty(SimpleLogger.LOG_FILE_KEY, logFile);
  cacheOutputStream = getBooleanProperty(SimpleLogger.CACHE_OUTPUT_STREAM_STRING_KEY, CACHE_OUTPUT_STREAM_DEFAULT);
  outputChoice = computeOutputChoice(logFile, cacheOutputStream);
  if (dateTimeFormatStr != null) {
    try {
      dateFormatter = new SimpleDateFormat(dateTimeFormatStr);
    } catch (IllegalArgumentException e) {
      Util.report("Bad date format in " + CONFIGURATION_FILE + "; will output relative time", e);
    }
  }
}

相关文章