tags:

views:

142

answers:

2

While running grails app in 'dev' mode using 'grails run-app', where is the default Tomcat log file located written out by the embedded Tomcat come with Grails (1.2.2) installation?

A: 

Should be $CATALINA_HOME/logs/catalina.out

armandino
My other stand-along Tomcat writes log out to $CATALINA_HOME/logs/catalina.out, not the location the embedded Tomcat comes with Grails logs access requests. Could you be more specific?
hko19
Do you have log4j configured in Config.groovy?
armandino
My log4j in Config.groovy is pretty standard in its default value. More pointers to have my Tomcat (embedded) log written out some where that I can see is appreciated.
hko19
+1  A: 

There isn't a default log file, the output to the log gets written to stdout.

Lloyd Meinholz
Some output goes to the stdout, but not Tomcat access log.
hko19