Example usage for com.google.gwt.gen2.logging.shared Log info

List of usage examples for com.google.gwt.gen2.logging.shared Log info

Introduction

In this page you can find the example usage for com.google.gwt.gen2.logging.shared Log info.

Prototype

public static void info(String message) 

Source Link

Document

Log an Level#INFO message.

Usage

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);
}