I have the following log4j.properties file in a docker container:
log4j.rootLogger=WARN,CONSOLE
log4j.logger.com.xxx.mypackage=DEBUG
# Console appender
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOLE.layout.ConversionPattern=%d %-5p [%c] %m%n
So, I'm logging in the console. Can this configuration consume disk space in linux? Because I have no space left in my device and the space results free after the command:
docker-compose down