reactor.util.Logger.debug()方法的使用及代码示例

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

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

Logger.debug介绍

[英]Log a message at the DEBUG level.
[中]在调试级别记录消息。

代码示例

代码示例来源:origin: reactor/reactor-core

  1. public void run() {
  2. LOGGER.debug("expired {}", state);
  3. @SuppressWarnings("unchecked")
  4. Signal<T> emptyState = (Signal<T>) EMPTY;
  5. state = emptyState;
  6. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Reset global error dropped strategy to bubbling back the error.
  3. */
  4. public static void resetOnErrorDropped() {
  5. log.debug("Reset to factory defaults : onErrorDropped");
  6. synchronized (log) {
  7. onErrorDroppedHook = null;
  8. }
  9. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Reset global data dropped strategy to throwing via {@link
  3. * reactor.core.Exceptions#failWithCancel()}
  4. */
  5. public static void resetOnNextDropped() {
  6. log.debug("Reset to factory defaults : onNextDropped");
  7. synchronized (log) {
  8. onNextDroppedHook = null;
  9. }
  10. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Reset global onNext error handling strategy to terminating the sequence with
  3. * an onError and cancelling upstream ({@link OnNextFailureStrategy#STOP}).
  4. */
  5. public static void resetOnNextError() {
  6. log.debug("Reset to factory defaults : onNextError");
  7. synchronized (log) {
  8. onNextErrorHook = null;
  9. }
  10. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Enable operator stack recorder that captures a declaration stack whenever an
  3. * operator is instantiated. When errors are observed later on, they will be
  4. * enriched with a Suppressed Exception detailing the original assembly line stack.
  5. * Must be called before producers (e.g. Flux.map, Mono.fromCallable) are actually
  6. * called to intercept the right stack information.
  7. * <p>
  8. * This is added as a specifically-keyed sub-hook in {@link #onEachOperator(String, Function)}.
  9. */
  10. public static void onOperatorDebug() {
  11. log.debug("Enabling stacktrace debugging via onOperatorDebug");
  12. GLOBAL_TRACE = true;
  13. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Reset global "assembly" hook tracking
  3. */
  4. public static void resetOnEachOperator() {
  5. log.debug("Reset to factory defaults : onEachOperator");
  6. synchronized (log) {
  7. onEachOperatorHooks.clear();
  8. onEachOperatorHook = null;
  9. }
  10. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Reset global "subscriber" hook tracking
  3. */
  4. public static void resetOnLastOperator() {
  5. log.debug("Reset to factory defaults : onLastOperator");
  6. synchronized (log) {
  7. onLastOperatorHooks.clear();
  8. onLastOperatorHook = null;
  9. }
  10. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Reset global operator error mapping to the default behavior.
  3. * <p>
  4. * For reference, the default mapping is to unwrap the exception and, if the second
  5. * parameter is another exception, to add it to the first as a suppressed.
  6. */
  7. public static void resetOnOperatorError() {
  8. log.debug("Reset to factory defaults : onOperatorError");
  9. synchronized (log) {
  10. onOperatorErrorHooks.clear();
  11. onOperatorErrorHook = null;
  12. }
  13. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Resets {@link #resetOnNextDropped() onNextDropped hook(s)} and
  3. * apply a strategy of throwing {@link Exceptions#failWithCancel()} instead.
  4. * <p>
  5. * Use {@link #resetOnNextDropped()} to reset to the default strategy of logging.
  6. */
  7. public static void onNextDroppedFail() {
  8. log.debug("Enabling failure mode for onNextDropped");
  9. synchronized(log) {
  10. onNextDroppedHook = n -> {throw Exceptions.failWithCancel();};
  11. }
  12. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Reset the {@link #onHandleError(BiConsumer)} hook to the default no-op behavior.
  3. */
  4. public static void resetOnHandleError() {
  5. if (log.isDebugEnabled()) {
  6. log.debug("Reset to factory defaults: onHandleError");
  7. }
  8. onHandleErrorHook = null;
  9. }

代码示例来源:origin: reactor/reactor-core

  1. @Override
  2. public void debug(String msg, Throwable t) {
  3. delegate.debug(msg, t);
  4. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Force the usage of JDK-based {@link Logger Loggers}, even if SLF4J is available
  3. * on the classpath.
  4. * <p>
  5. * The previously active logger factory is simply replaced without
  6. * any particular clean-up.
  7. */
  8. public static final void useJdkLoggers() {
  9. String name = LoggerFactory.class.getName();
  10. LoggerFactory loggerFactory = new JdkLoggerFactory();
  11. loggerFactory.getLogger(name).debug("Using JDK logging framework");
  12. LOGGER_FACTORY = loggerFactory;
  13. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Log an {@link IllegalStateException} that indicates more than the requested
  3. * amount was produced.
  4. *
  5. * @see Exceptions#failWithOverflow()
  6. */
  7. public static void reportMoreProduced() {
  8. if (log.isDebugEnabled()) {
  9. log.debug("More data produced than requested",
  10. Exceptions.failWithOverflow());
  11. }
  12. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Log a {@link Exceptions#duplicateOnSubscribeException() duplicate subscription} error.
  3. *
  4. * @see Exceptions#duplicateOnSubscribeException()
  5. */
  6. public static void reportSubscriptionSet() {
  7. if (log.isDebugEnabled()) {
  8. log.debug("Duplicate Subscription has been detected",
  9. Exceptions.duplicateOnSubscribeException());
  10. }
  11. }

代码示例来源:origin: reactor/reactor-core

  1. /**
  2. * Log an {@link IllegalArgumentException} if the request is null or negative.
  3. *
  4. * @param n the failing demand
  5. *
  6. * @see Exceptions#nullOrNegativeRequestException(long)
  7. */
  8. public static void reportBadRequest(long n) {
  9. if (log.isDebugEnabled()) {
  10. log.debug("Negative request",
  11. Exceptions.nullOrNegativeRequestException(n));
  12. }
  13. }

代码示例来源:origin: reactor/reactor-core

  1. @Test
  2. public void debug1() throws Exception {
  3. logger.debug("message {} {} format", "with", 1);
  4. assertThat(errContent.size()).isZero();
  5. assertThat(outContent.toString()).isEqualTo("[DEBUG] (" + Thread.currentThread().getName() + ") message with 1 format\n");
  6. }

代码示例来源:origin: reactor/reactor-core

  1. @Test
  2. public void debug() throws Exception {
  3. logger.debug("message");
  4. assertThat(errContent.size()).isZero();
  5. assertThat(outContent.toString()).isEqualTo("[DEBUG] (" + Thread.currentThread().getName() + ") message\n");
  6. }

代码示例来源:origin: reactor/reactor-core

  1. @Test
  2. public void debugDismissedInNonVerboseMode() {
  3. Logger log = new Loggers.ConsoleLogger("test", new PrintStream(outContent), new PrintStream(errContent), false);
  4. log.debug("foo");
  5. log.debug("foo", new IllegalArgumentException("foo"));
  6. log.debug("foo {}", "foo");
  7. assertThat(outContent.toString()).doesNotContain("foo");
  8. assertThat(errContent.toString()).doesNotContain("foo");
  9. assertThat(log.isDebugEnabled()).as("isDebugEnabled").isFalse();
  10. }

代码示例来源:origin: reactor/reactor-core

  1. @Test
  2. public void debug2() throws Exception {
  3. logger.debug("with cause", CAUSE);
  4. assertThat(errContent.size()).isZero();
  5. assertThat(outContent.toString())
  6. .startsWith("[DEBUG] (" + Thread.currentThread().getName() + ") with cause - java.lang.IllegalStateException: cause" +
  7. "\njava.lang.IllegalStateException: cause\n" +
  8. "\tat reactor.util.ConsoleLoggerTest");
  9. }

代码示例来源:origin: reactor/reactor-core

  1. @Test
  2. public void debugNulls() {
  3. logger.debug("vararg {} is {}", (Object[]) null);
  4. logger.debug("param {} is {}", null, null);
  5. assertThat(errContent.size()).isZero();
  6. assertThat(outContent.toString())
  7. .contains("vararg {} is {}")
  8. .contains("param null is null");
  9. }

相关文章