to see what jobs serviio is doing
8 posts
• Page 1 of 1
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
server running serviio PRO and media browser Intel dual core g2030 3.0Ghz 8gb dd3 ram Microsoft windows server 2012 gigabit network . Devices Sony KDL55W805A, ps3, 2 sony bravia 2011, 5 android devices 2 of them samsung galaxy s3 running bubble upnp and serviigo, netgem netbox , 2 laptops XBMC windows 8
Re: to see what jobs serviio is doing
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
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
Illico
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
Re: to see what jobs serviio is doing
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
Hi I did it this way and also the other way but mouthing happens am i doing somthing wrong where should i see the info when streeming?
way 1
<?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>
way 2
<?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">
<priority value="INFO"/>
</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>
<category name="org.serviio.delivery.resource.VideoDeliveryEngine">
<priority value="DEBUG"/>
</category>
</log4j:configuration>
server running serviio PRO and media browser Intel dual core g2030 3.0Ghz 8gb dd3 ram Microsoft windows server 2012 gigabit network . Devices Sony KDL55W805A, ps3, 2 sony bravia 2011, 5 android devices 2 of them samsung galaxy s3 running bubble upnp and serviigo, netgem netbox , 2 laptops XBMC windows 8
Re: to see what jobs serviio is doing
Where eill i see the delivery jobs after editing the file thanks?
server running serviio PRO and media browser Intel dual core g2030 3.0Ghz 8gb dd3 ram Microsoft windows server 2012 gigabit network . Devices Sony KDL55W805A, ps3, 2 sony bravia 2011, 5 android devices 2 of them samsung galaxy s3 running bubble upnp and serviigo, netgem netbox , 2 laptops XBMC windows 8
Re: to see what jobs serviio is doing
With latest Servio 1.2, edit like this :
Restart serviio services or reboot, then on log file you will see only VideoDeliveryEngine messages
- Code:
<?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>
Restart serviio services or reboot, then on log file you will see only VideoDeliveryEngine messages
Illico
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
Re: to see what jobs serviio is doing
Thanks it work but it would be much better if this info will show in the console
server running serviio PRO and media browser Intel dual core g2030 3.0Ghz 8gb dd3 ram Microsoft windows server 2012 gigabit network . Devices Sony KDL55W805A, ps3, 2 sony bravia 2011, 5 android devices 2 of them samsung galaxy s3 running bubble upnp and serviigo, netgem netbox , 2 laptops XBMC windows 8
Re: to see what jobs serviio is doing
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...
Illico
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
Re: to see what jobs serviio is doing
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...
Thanks for the great help you have always been and thank you for your kind patience . I can't see why zip wouldn't want to implement it in the console it is a good thing and I fined it as a need, but anyway on the other hand I am sure zip knows whats best thanks regards Chris
server running serviio PRO and media browser Intel dual core g2030 3.0Ghz 8gb dd3 ram Microsoft windows server 2012 gigabit network . Devices Sony KDL55W805A, ps3, 2 sony bravia 2011, 5 android devices 2 of them samsung galaxy s3 running bubble upnp and serviigo, netgem netbox , 2 laptops XBMC windows 8
8 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 40 guests