I just checked one of my applications (which uses GXT), and there I see a log message:

I use these lines inside the module descriptor:
<set-property name="gwt.logging.logLevel" value="INFO"/> <set-property name="gwt.logging.enabled" value="TRUE" /> <set-property name="gwt.logging.consoleHandler" value="ENABLED"/> <set-property name="gwt.logging.developmentModeHandler" value="ENABLED"/> <set-property name="gwt.logging.systemHandler" value="ENABLED"/> <set-property name="gwt.logging.simpleRemoteHandler" value="DISABLED"/> <set-property name="gxt.logging.enabled" value="true"/>
and add this code to my host:
private static final Logger logger = logger.getLogger(ShellPresenter.class.getName()); logger.log(Level.INFO, "Starting module Hermes");
I did not take the time to find out which of the configurations allows logging, and whether it is related to GXT.
And some more information:
groups.google.com/forum/#!topic/google-web-toolkit/BRZNt1_qEjg
El Hoss Feb 22 '15 at 17:09 2015-02-22 17:09
source share