Phil Leigh;565079 Wrote: 
> Thanks Jim.
> My log.conf file looks like this:
> 
> ...
> 
> log4perl.appender.server.layout.ConversionPattern = %M (%L) %m%n
> 
Based on this it looks like the following code in Slim/Utils/Log.pm
that generates the log.conf file works different on your system.


Code:
--------------------
    
        if ($::LogTimestamp) {
  
                $pattern    = '[%d{yy-MM-dd HH:mm:ss.SSSS}] %M (%L) %m%n';
                $rawpattern = '[%d{yy-MM-dd HH:mm:ss.SSSS}] %m%n';
  
        } else {
  
                $pattern = '%M (%L) %m%n';
                $rawpattern = '%m%n';
        }
  
  
--------------------



It looks like $::LogTimestamp is false in your system. Do you launch it
with some special parameters ? 
According to the documentation in slimserver.pl there seems to be a
--noLogTimestamp startup parameter that should make it behave like your
system.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets'
(http://wiki.slimdevices.com/index.php/User:Erland). If my answer
helped you and you like to encourage future presence on this forum
and/or third party plugin/applet development, 'donations are always
appreciated' (http://erland.isaksson.info/donate))
------------------------------------------------------------------------
erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=80772

_______________________________________________
beta mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/beta

Reply via email to