- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
AA_Server Log Level Configuration Location
My aa_server.log file is too big to open. Where do I configure log leveling for this file?
- Tags:
- Adaptive Auth
- Adaptive Authentication
- Community Thread
- Discussion
- Forum Thread
- RSA Adaptive Authentication
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi Teresa,
I assume you are mentioning the DEBUG log level , it might cause your log fill up. You can configure it to Info under AdaptiveAuthentication/WEB-INF/classes/log4j.properties.
EX: Before
log4j.rootCategory = DEBUG,LOGFILE
log4j.logger.org.apache = WARN,LOGFILE
log4j.logger.com.passmarksecurity.utils.AuditLogger = INFO,auditor
log4j.logger.com.passmarksecurity.utils.AlarmLogger = INFO,alarm
log4j.logger.com.passmarksecurity.forensic.logging.ForensicLogger = INFO,forensic
log4j.logger.failedChallenge = INFO,failedChallenge
After
log4j.rootCategory = INFO,LOGFILE
log4j.logger.org.apache = WARN,LOGFILE
log4j.logger.com.passmarksecurity.utils.AuditLogger = INFO,auditor
log4j.logger.com.passmarksecurity.utils.AlarmLogger = INFO,alarm
log4j.logger.com.passmarksecurity.forensic.logging.ForensicLogger = INFO,forensic
log4j.logger.failedChallenge = INFO,failedChallenge
Hope this help
Thanks,
