fix:fix wrong report when using Zuul with instance not found exception.

pull/1283/head
Haotian Zhang 1 year ago
parent 7908e9490a
commit 46d42cde10

@ -72,7 +72,9 @@ public class SuccessPolarisReporter implements EnhancedPlugin {
} }
if (context.getThrowable() != null) { if (context.getThrowable() != null) {
LOG.debug("Success report with throwable. Don't report. {}", context, context.getThrowable()); if (LOG.isDebugEnabled()) {
LOG.debug("Success report with throwable. Don't report. {}", context, context.getThrowable());
}
return; return;
} }

Loading…
Cancel
Save