Server-Side Collaboration 2026x Administration Guide Web Application Platform Administration Current: Configuring data logging Configuring data logging You can change the default data logging settings, including the logging level, for Web Application Platform and Teamwork Cloud as described below. Web Application Platform uses the Apache Log4j logging framework. To learn more, see https://logging.apache.org/log4j/2.x/. To configure the data loggingGo to the <install_root>/WebAppPlatform/shared/conf directory and open the log4j2.properties file.Depending on your needs do one or both of the following:To configure the logging of the Web Application Platform-related information, define the following properties:logger.webappplatform.namelogger.webappplatform.levellogger.webappplatform.additivity logger.webappplatform.appenderRef.file.refTo change the number and size of logs to be stored, and the log storage time, define the following properties:appender.file.typeappender.file.nameappender.file.fileNameappender.file.filePatternappender.file.layout.typeappender.file.layout.patternappender.file.policies.typeappender.file.policies.time.typeappender.file.policies.size.typeappender.file.policies.size.sizeappender.file.strategy.typeappender.file.strategy.maxRestart the Java application server. Standard logging levels The Log4J framework has the following standard logging levels: OFF, FATAL, ERROR, WARN, INFO, DEBUG, TRACE, ALL. How to turn off loggingYou can disable data logging to a specific file by changing the logging level of the related logger.To turn off loggingLocate the logger you want to turn off.Change the logging level of that logger to "off".Restart the Java application server. Turning logging back on To turn on the data logging that has been disabled, change the logging level of the related logger from OFF to the logging level you want to use. ×