I\'m running tomcat in docker, but I can\'t see the logs. They are written to various log files under tomcat/logs, but I can\'t see them when tomcat is running in a docker c
Following needs to be done to direct all logs to stdout:
/dev/stdout
. This will make sure all tomcat logs are sent to stdout.