User Tools

Site Tools


debug_filter

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
debug_filter [2013/08/26 11:42]
denyall Added DAO library component. Clarified all library vs components.
debug_filter [2021/12/14 10:31]
zip Updates for v2.2.1
Line 1: Line 1:
 To filter out Library updates from debug log simple find the below code in log4j.xml: To filter out Library updates from debug log simple find the below code in log4j.xml:
  
-<code><category name="org.serviio"+<code><Logger name="org.serviio" level="debug" /></code>
-      <priority value="DEBUG"/+
-</category></code>+
  
 and add the below code under it: and add the below code under it:
  
-<code><category name="org.serviio.library"+<code><Logger name="org.serviio.library" level="info" /></code>
-      <priority value="INFO"/+
-</category></code>+
  
 This will filter out __all__ library update messages.   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:+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:
  
-<code><category name="org.serviio.library.local"+<code> 
-      <priority value="INFO"/> +<Logger name="org.serviio.library.local" level="info" />>
-</category>+
  
-<category name="org.serviio.library.online"+<Logger name="org.serviio.library.online" level="info" />
-      <priority value="INFO"/+
-</category>+
  
-<category name="org.serviio.library.dao"+<Logger name="org.serviio.library.dao" level="info" /> 
-      <priority value="INFO"/> +</code>
-</category></code>+
debug_filter.txt · Last modified: 2021/12/14 10:31 by zip