Example usage for com.google.gwt.gen2.logging.shared LogEvent getMessage

List of usage examples for com.google.gwt.gen2.logging.shared LogEvent getMessage

Introduction

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

Prototype

public String getMessage() 

Source Link

Document

Gets the current message.

Usage

From source file:com.google.gwt.gen2.demo.simplelogging.client.SimpleLoggingDemo.java

License:Apache License

public void onLog(LogEvent event) {
    alert("Default logger:" + event.getLevel() + ":" + event.getMessage());
}