作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在使用带有 DynamicThreshholdFilter 定义的 logback,如下所示
<turboFilter class="ch.qos.logback.classic.turbo.DynamicThresholdFilter">
<Key>USER_MDC_KEY</Key>
<DefaultThreshold>DEBUG</DefaultThreshold>
<MDCValueLevelPair>
<value>USER1</value>
<level>DEBUG</level>
</MDCValueLevelPair>
</turboFilter>
最佳答案
不可能是修改 动态,因为有一个检查可以防止它。
但是,您可以使用以下内容动态设置它:
Iterator<TurboFilter> it = ((ch.qos.logback.classic.LoggerContext)LoggerFactory.getILoggerFactory()).getTurboFilterList().iterator();
while (it.hasNext()) {
TurboFilter f = it.next();
if (f instanceof DynamicThresholdFilter) {
DynamicThresholdFilter dtFilter = (DynamicThresholdFilter)f;
MDCValueLevelPair pair = new MDCValueLevelPair();
pair.setValue("USER1");
pair.setLevel(Level.INFO);
dtFilter.addMDCValueLevelPair(pair);
}
}
TurboFilter
配置,您可以创建一个新的并将其添加到
LoggerContext
.
关于Logback - 在运行时以编程方式修改 DynamicThresholdFilter (TurboFilter),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20177643/
我们正在使用带有 DynamicThreshholdFilter 定义的 logback,如下所示 USER_MDC_KEY DEBUG USER1 DE
我是一名优秀的程序员,十分优秀!