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

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

Introduction

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

Prototype

public Level getLevel() 

Source Link

Document

Gets the Level of the event.

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