Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们在单个框中为不同的不同应用程序运行多个 tomcats 实例,并且我们使用 tomcat 配置中的以下行将日志发送到 syslog。
JAVA_OPTS="$JAVA_OPTS -Dserver.syslog.host=logserver1.example.com" JAVA_OPTS="$JAVA_OPTS -Dserver.syslog.level=WARN"
无论如何我可以在日志文件中添加自定义标签,以便我可以根据每个实例记录它们吗?
为什么不使用 log4j ?
您可以为每个实例配置 log4j.properties,然后为每个实例选择不同的 PatternLayout/ConversionPatterns。
您应该能够在提及模式时添加自定义标签。