我正在使用Tomee。logs文件夹包含这样的文件
我在文档中寻找解释,但是什么也找不到。据我了解,这些localhost文件仅记录“主机”活动。这样吧?这些文件有什么区别?他们记录不同类型的消息吗?
localhost
您可以在conf / logging.properties和conf / server.xml中找到访问日志的所有详细信息。
简而言之
这是一个注释示例,可以帮助您阅读logging.propertues:
# log on the host "localhost" org.apache.catalina.core.ContainerBase.[Catalina].[localhost].xxx # log on the host "localhost" for the webapp foo org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/foo].xxx
更普遍的模式是:
org.apache.catalina.core.ContainerBase.[${engine}].[${host}].[${context}]
旁注:$ {context}是根上下文的“ /”。
此语法适用于ServletContext日志记录
全部说明https://tomcat.apache.org/tomcat-8.5-doc/logging.html