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.
我正在创建一个通用工件,可以导入到我公司的不同项目中。我的代码中有一些调试日志记录语句 (log4j)。
我的问题是我是否应该在我的 jar 中包含 log4j dtd 和 xml,以及我需要在 xml 中进行哪些设置?我希望仅当父项目启用调试级别时才显示调试消息,并且消息应进入该项目中配置的日志文件。
谢谢。
我会在我的工件中使用像Simple Logging Facade for Java或Commons Logging这样的包装器,并让集成商决定使用哪个日志记录工具以及如何配置它。