subchen / jetbrick-template-2x

Template Engine for Java
http://subchen.github.io/jetbrick-template/
Other
388 stars 99 forks source link

如何关闭Info日志? #36

Closed ensean closed 7 years ago

ensean commented 7 years ago

目前输出了很多疑似debug模式的日志

[INFO] Loading template: (source)
[INFO] Loading template: (source)
[INFO] Loading template: (source)
[INFO] Loading template: (source)
[INFO] Loading template: (source)
[INFO] Loading template: (source)
[INFO] Loading template: (source)
[INFO] Loading template: (source)

log4j.properties配置如下

……
log4j.logger.jetx.debug= ERROR
……

也尝试过将 log4j.logger.jetx.debug注释掉,但还是有很多info信息打印出来。。。

subchen commented 7 years ago

log4j.logger.jetx.debug 这个只对模版指令 ${debug("xxxx")} 有效, 如果要关掉 jetbrick-template 本身的日志,可以尝试 log4j.logger.jetbrick.template = ERROR

ensean commented 7 years ago

尝试了 log4j.logger.jetbrick.template = ERROR 、log4j.logger.jetx.template = ERROR 都没有效果, info 信息还是一直打……

subchen commented 7 years ago

你用了 slf4j + log4j 的组合了吗? 否则 log4j 的配置是不会生效的

subchen commented 7 years ago

需要三个 jar

ensean commented 7 years ago

多谢指点, OK了。。

log4j.logger.jetbrick.template 不需要配置