to see what jobs serviio is doing
can there be a way to know what jobs serviio is doing like transcoding to witch devices and to what devices it is streaming to and what it is streaming
Illico wrote:With serviio log file.
You can edit the ./config/log4j.xml file like this:
<category name="org.serviio.delivery.resource.VideoDeliveryEngine">
<priority value="DEBUG"/>
</category>
To only see the VideoDelivery messages
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<!-- ===================================================================== -->
<!-- -->
<!-- Log4j Configuration -->
<!-- -->
<!-- ===================================================================== -->
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
<appender name="FILE" class="org.apache.log4j.RollingFileAppender">
<param name="Threshold" value="DEBUG"/>
<param name="Append" value="true" />
<param name="File" value="${serviio.home}/log/serviio.log" />
<param name="MaxFileSize" value="500KB" />
<param name="MaxBackupIndex" value="5" />
<param name="Encoding" value="UTF-8" />
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="%d{ISO8601} %-5p [%c{1}] %m%n"/>
</layout>
</appender>
<category name="org.serviio.delivery.resource.VideoDeliveryEngine">
<priority value="DEBUG"/>
</category>
<category name="com.sun.syndication">
<priority value="ERROR"/>
</category>
<category name="org.jaudiotagger">
<priority value="ERROR"/>
</category>
<category name="org.restlet">
<priority value="ERROR"/>
</category>
<category name="org.apache.jcs">
<priority value="WARN"/>
</category>
<root>
<priority value="INFO"/>
<appender-ref ref="FILE"/>
</root>
</log4j:configuration>
chrismallia wrote:Thanks it work but it would be much better if this info will show in the console
Illico wrote:chrismallia wrote:Thanks it work but it would be much better if this info will show in the console
OK,
For info on console, I'm not sure Zip would like to implement it...