Example usage for com.google.gwt.logging.client SystemLogHandler subclass-usage

List of usage examples for com.google.gwt.logging.client SystemLogHandler subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.logging.client SystemLogHandler subclass-usage.

Usage

From source file com.seanchenxi.gwt.logging.core.handler.SCXSystemLogHandler.java

public class SCXSystemLogHandler extends SystemLogHandler {

    public SCXSystemLogHandler() {
        setFormatter(new PatternFormatter());
        setLevel(Level.ALL);
    }

From source file org.jboss.errai.common.client.logging.handlers.ErraiSystemLogHandler.java

/**
 * An extension of {@link SystemLogHandler} that uses a given {@link Formatter}.
 * 
 * @author Max Barkley <mbarkley@redhat.com>
 */
public class ErraiSystemLogHandler extends SystemLogHandler implements ErraiLogHandler {