tags:

views:

80

answers:

1

Hi,

Is there any configuration for JBoss Application Server's Log configuration where in the logs get deleted automatically if the log size exceeds some threshold or if it is older than a certain date ?

+1  A: 

I believe there is no way to delete them, but you could use the RollingFileAppender. There, you can specify the file size limit like:

<param name="MaxFileSize" value="1000KB"/>
thelost