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

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

java - Digest auth with Spring Security using javaconfig -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -