List of usage examples for com.google.gwt.gen2.logging.shared Log info
public static void info(String message)
From source file:com.google.gwt.gen2.demo.corelogging.client.CoreLoggingDemo.java
License:Apache License
public void onModuleLoad() { Log.info( "I can be used by widget sets that do now use the gwt widget set, but do use the core user clases"); }
From source file:com.google.gwt.gen2.demo.simplelogging.client.SimpleLoggingDemo.java
License:Apache License
public void onModuleLoad() { Log.info("I can be used by widget sets that do not include gwt's user libraries"); // com.google.gwt.user.client.Window.alert("If you uncomment me, your compile should fail, as user libraries are not included"); }
From source file:com.google.gwt.gen2.demo.simplewidget.client.SimpleWidgetDemo.java
License:Apache License
private void report(String string) { Log.info(string); }