How can I do a verbose compile in Play Framework?

前端 未结 1 517
情话喂你
情话喂你 2021-01-02 17:53

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

相关标签:
1条回答
  • 2021-01-02 18:35

    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.

    0 讨论(0)
提交回复
热议问题