0

I am using GWT development mode. As well as remote debugging through maven and Intellij. E.G. I launch 'mvn gwt:debug -Dgwt.noserver=true'. And then launch the remote debugging: '-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000'

And then the GWT dev mode application launches when I visit the browser. This is all working fine but I sometimes the compile process is slow. Is there a flag that I can pass to GWT dev app for more debugging what is going on? Can I print the 'compile' statements when it compiles GWT code.

Berlin Brown
  • 11,504
  • 37
  • 135
  • 203
  • possible duplicate of [GWT module may need to be (re)compiled REDUX](http://stackoverflow.com/questions/5719118/gwt-module-may-need-to-be-recompiled-redux) – Thomas Broyer Jun 11 '13 at 14:03
  • I want to display more message about the inner workings of the GWT development plugin. Not necessarily address the compile message. – Berlin Brown Jun 11 '13 at 14:28

1 Answers1

0

I was using the gwt-maven-plugin. You can add 'logLevel=DEBUG' to the configuration settings to increase the logging for the GWT development mode.

Berlin Brown
  • 11,504
  • 37
  • 135
  • 203