I'm using the Tomcat7 Maven plugin:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0-beta-1</version>
<configuration>
<update>true</update>
<contextFile>${basedir}/conf/context.xml</contextFile>
<tomcatUsers>${basedir}/conf/tomcat-users.xml</tomcatUsers>
</configuration>
</plugin>
I run my app as follows (which runs tomcat embedded)
mvn tomcat7:run
THE ISSUE: There is no catalina.out log file?
I want to turn on logging for the Realms so I can debug something. In the ./target/tomcat/log dir there is only access_log.* no other log files.
I've tried messing with the ./target/tomcat/conf/logging.properties file to no avail.
How can I configure logging for this Tomcat?