logback.xml 应该在 SBT/Scala 项目中的哪个项目目录中?
我有一个 SBT/Scala 项目,logback 似乎可以工作,但完全忽略我的 logback.xml
配置文件。我已放置在 src/main/scala/logback.xml
中。它没有任何作用。
它的正确位置是什么?
任何人都可以发布带有有效 logback.xml
文件的 SBT/Scala 框架项目示例吗?
I have an SBT/Scala project and logback seems to work, but totally ignores my logback.xml
config file. I have placed at src/main/scala/logback.xml
. It doesn't do anything.
What is the correct location for it?
Can anybody post an example of an SBT/Scala skeleton project with a working logback.xml
file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放在
src/main/resources/logback.xml
下。当SBT进行工件组装时,它将被复制到正确的位置。Put it under
src/main/resources/logback.xml
. It will be copied to the right location when SBT is doing the artifact assembly.