In play framework 2.0.8 with Java is it possible to do a verbose compile?
Currently I only see:
[info] Compiling 131 Scala sources and 10 Jav
Play wraps sbt, so you could use the sbt command set logLevel in compile := Level.Debug
within the play console to set the logging level. Source: Configure and use logging
Changing a controller could trigger the routes compiler, which would need reverse routes to be recompiled, and then potentially anything using those reverse routes as well. I'm not sure of the details, but I can almost guarantee the routes compiler is involved with most mass re-compiles.