google app engine - Why does my application print debug messages after deployment? -
i deployed project google app engine (gae) noticed debug messages can seen in dev-tool.
i thought compiler remove debug output compiles release.
this current logging configuration in module.gwt.xml
<inherits name="com.google.gwt.logging.logging"/> <set-property name="gwt.logging.loglevel" value="all"/> <set-property name="gwt.logging.enabled" value="true"/> <set-property name="gwt.logging.consolehandler" value="enabled" /> <set-property name="gwt.logging.simpleremotehandler" value="disabled"/> <set-property name="compiler.stackmode" value="emulated"/> <set-configuration-property name="compiler.emulatedstack.recordlinenumbers" value="true"/> <set-configuration-property name="compiler.emulatedstack.recordfilenames" value="true"/>
how can rid of debug output on deployed application?
i using gwt 2.8.0-beta1
, how log:
import java.util.logging.logger; public class mywidget extends composite { private final static logger logger = logger.getlogger(mywidget.class.getname()); // .. public void myfunc() { logger.fine("hello world!"); } }
Comments
Post a Comment