本文整理了Java中freemarker.log.Logger.isErrorEnabled()
方法的一些代码示例,展示了Logger.isErrorEnabled()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger.isErrorEnabled()
方法的具体详情如下:
包路径:freemarker.log.Logger
类名称:Logger
方法名:isErrorEnabled
[英]Returns true if this logger will log error messages.
[中]如果此记录器将记录错误消息,则返回true。
代码示例来源:origin: org.freemarker/freemarker
if (getLogTemplateExceptions() && LOG.isErrorEnabled()
代码示例来源:origin: org.freemarker/com.springsource.freemarker
private void handleTemplateException(TemplateException te)
throws TemplateException
{
// Logic to prevent double-handling of the exception in
// nested visit() calls.
if(lastThrowable == te) {
throw te;
}
lastThrowable = te;
// Log the exception
if(logger.isErrorEnabled()) {
logger.error("Template processing error: " + StringUtil.jQuoteNoXSS(te.getMessage()), te);
}
// Stop exception is not passed to the handler, but
// explicitly rethrown.
if(te instanceof StopException) {
throw te;
}
// Finally, pass the exception to the handler
getTemplateExceptionHandler().handleTemplateException(te, this, out);
}
代码示例来源:origin: org.freemarker/freemarker-gae
if (getLogTemplateExceptions() && LOG.isErrorEnabled()
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.freemarker
if (getLogTemplateExceptions() && LOG.isErrorEnabled()
内容来源于网络,如有侵权,请联系作者删除!