提交 cee7d09e 编写于 作者: J Juergen Hoeller

Add is*Enabled methods for log level checks to LogAccessor

Closes gh-22862
上级 0f553661
......@@ -68,6 +68,51 @@ public class LogAccessor {
}
// Log level checks
/**
* Is fatal logging currently enabled?
*/
public boolean isFatalEnabled() {
return this.log.isFatalEnabled();
}
/**
* Is error logging currently enabled?
*/
public boolean isErrorEnabled() {
return this.log.isErrorEnabled();
}
/**
* Is warn logging currently enabled?
*/
public boolean isWarnEnabled() {
return this.log.isWarnEnabled();
}
/**
* Is info logging currently enabled?
*/
public boolean isInfoEnabled() {
return this.log.isInfoEnabled();
}
/**
* Is debug logging currently enabled?
*/
public boolean isDebugEnabled() {
return this.log.isDebugEnabled();
}
/**
* Is trace logging currently enabled?
*/
public boolean isTraceEnabled() {
return this.log.isTraceEnabled();
}
// Plain log methods
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册