User Tools

Site Tools


debug_filter

This is an old revision of the document!


To filter out Library updates from debug log simple find the below code in log4j.xml:

<category name="org.serviio">
      <priority value="DEBUG"/>
</category>

and add the below code under it:

<category name="org.serviio.library">
      <priority value="INFO"/>
</category>

This will filter out all library update messages.

If you prefer, you can filter out individual library components by adding the following code (this is instead of the above code, not in addition to it), setting the priority value to DEBUG or INFO as needed:

<category name="org.serviio.library.local">
      <priority value="INFO"/>
</category>

<category name="org.serviio.library.online">
      <priority value="INFO"/>
</category>

<category name="org.serviio.library.dao">
      <priority value="INFO"/>
</category>
debug_filter.1377517339.txt.gz · Last modified: 2013/08/26 11:42 by denyall