limit the size of log files
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2013 12:08 PM
Hello,
I wanted to limit the size of log files,because it eats up too much disk space.
And is it correct that insturction ?
"param name="MaxFileSize" value="1024KB"
Thanks
I wanted to limit the size of log files,because it eats up too much disk space.
And is it correct that insturction ?
"param name="MaxFileSize" value="1024KB"
Thanks
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2013 11:03 AM
Hi,
since Alfresco uses log4j for logging, you have some choices.
This solution gives you the opportunity to limit the file size and to decide the number of backup files.
Personally I prefer the DailyRollingFileAppender that rolls each day on a new file
You can chack log4j page for more info at http://logging.apache.org/
Regards,
Andrea
since Alfresco uses log4j for logging, you have some choices.
This solution gives you the opportunity to limit the file size and to decide the number of backup files.
log4j.appender.R.MaxFileSize=100KB# Keep one backup filelog4j.appender.R.MaxBackupIndex=1
Personally I prefer the DailyRollingFileAppender that rolls each day on a new file
# LOG4J daily rolling log files configurationlog4j.rootLogger=DEBUG, RollingAppenderlog4j.appender.RollingAppender=org.apache.log4j.DailyRollingFileAppenderlog4j.appender.RollingAppender.File=app.loglog4j.appender.RollingAppender.DatePattern='.'yyyy-MM-ddlog4j.appender.RollingAppender.layout=org.apache.log4j.PatternLayoutlog4j.appender.RollingAppender.layout.ConversionPattern=[%p] %d %c %M - %m%n
You can chack log4j page for more info at http://logging.apache.org/
Regards,
Andrea
