[Red5] webapps not logging

javaguy javaguy at freenet.de
Mon May 18 03:07:42 PDT 2009


Hi djsb,

I dont,t know what version you use. I use version 0.7 and there is such 
a logging bug, too. It's just a little configuration problem. To fix it, 
edit the file conf/logback.xml.
In there, the logfiles should point to
log/red5.log
log/error.log
and so on.
Not "../log/red5.log" or similar. Just specify the path beginning from 
the red5 root directory.

Here as an example just a part from my logback.xml

<appender name="FILE" class="ch.qos.logback.core.FileAppender">
	<File>log/red5.log</File>
	...
</appender>
<appender name="ERRORFILE" class="ch.qos.logback.core.FileAppender">
	<File>log/error.log</File>
	...
</appender>

This worked for me and I hope that was the right solution for you, too.


djsb schrieb:
> I forgot to say that the application works as expected, expecting the logging
> capabilities.
> 
> 
> djsb wrote:
>> I have just used the tutorial from
>> http://www.actionscript.org/resources/articles/615/1/Getting-started-with-red5-server/Page1.html 
>>
>> Everything went pretty well, with the exception of the logging files.
>>
>> There is no error nowhere, but also no log files.
>>
>> Could someone post some help?
>>
>> Best regards,
>>
> 




More information about the Red5 mailing list