有没有办法完全关闭Tomcat 7上的日志记录? 或者,是否可以设置一个不那么详细的"记录级别?
答案 0 :(得分:1)
在tomcat下的conf /目录下有一个logging.properties文件。
您必须打开该文件并将日志级别更改为您想要的类型:
例如:
您可以在案例中将日志级别更改为“INFO”:
Log level
Description
SEVERE(highest) Captures exception and Error
WARNING Warning messages
INFO Informational message, related to the server activity
CONFIG Configuration message
FINE Detailed activity of the server transaction (similar to debug)
FINER More detailed logs than FINE
FINEST More detailed logs the FINER
答案 1 :(得分:0)
Tomcat使用名为Juli的commons-logging实现。它在内部使用Java Util Logging。因此,要更改日志记录级别,请更改logging.properties文件(jre_dir / lib)并将控制台记录器设置为WARNING:
java.util.logging.ConsoleHandler.level = WARNING