|
From: Wolfgang M. <wol...@gm...> - 2005-11-14 12:54:29
|
> Can someone put me out of my misery and tell
> how to suppress the constant flow of log messages like the following?
Just change the log priority for the corresponding log categories to
"warn". If you are running eXist in Tomcat, log4j.xml is in
webapp/WEB-INF/ (otherwise in EXIST_HOME). The log4j hierarchy of
priorities is DEBUG < INFO < WARN < ERROR < FATAL. Change the root
category as follows:
<root>
<priority value=3D"warn"/>
<appender-ref ref=3D"exist.core"/>
</root>
Hope this helps to keep the wolves away...
Wolf
|