JBoss Application Server Log Configuration
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 tha开发者_开发技巧n a certain date ?
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"/>
精彩评论