在哪里可以为solr记录屏幕配置LEVEL?
http://localhost:8983/solr/#/~logging
默认情况下,LEVEL似乎是WARN。
是否有特殊的附加信息或特殊文件?
我知道我可以为记录器配置LEVEL。
http://localhost:8983/solr/#/~logging/level
但是日志屏幕没有选项。
不幸的是,solr文档在这里没有帮助: https://cwiki.apache.org/confluence/display/solr/Configuring+Logging
答案 0 :(得分:1)
如果您使用新样式solr.xml,则可以在solr.xml中配置管理日志记录屏幕(不要与solrconfig.xml混淆):
<solr>
<logging>
<str name="enabled">true</str>
<watcher>
<int name="size">50</int>
<int name="threshold">INFO</int>
</watcher>
</logging>
...
</solr>
答案 1 :(得分:0)
我所要做的就是:
要在示例Jetty服务器中获取与另一个容器(例如Tomcat)相同的日志记录设置,您需要执行以下操作: