Example usage for java.util.logging Handler subclass-usage

List of usage examples for java.util.logging Handler subclass-usage

Introduction

In this page you can find the example usage for java.util.logging Handler subclass-usage.

Usage

From source file at.bitfire.davdroid.log.LogcatHandler.java

public class LogcatHandler extends Handler {
    private static final int MAX_LINE_LENGTH = 3000;
    public static final LogcatHandler INSTANCE = new LogcatHandler();

    private LogcatHandler() {
        super();

From source file LogWindow.java

class WindowHandler extends Handler {
    private LogWindow window = null;

    private Formatter formatter = null;

    private Level level = null;

From source file org.ebayopensource.turmeric.runtime.tests.common.jetty.SimpleConsoleHandler.java

public class SimpleConsoleHandler extends Handler {
    public static class Init {
        public Init() {
            URL url = this.getClass().getResource("test-logging.properties");
            if (url == null) {
                configureDefaults();

From source file org.ebayopensource.turmeric.runtime.tests.common.logging.SimpleConsoleHandler.java

public class SimpleConsoleHandler extends Handler {
    public static class Init {
        public Init() {
            URL url = this.getClass().getResource("test-logging.properties");
            if (url == null) {
                configureDefaults();

From source file ca.phon.app.log.LogHandler.java

/**
 * Holds a specified number of log events in memory.
 *
 */
public class LogHandler extends Handler {

From source file cz.lbenda.coursing.client.GlobalExceptionHandler.java

/** Global handler for all exception which is thrown in client
 * @author Lukas Benda <lbenda at lbenda.cz>
 */
// @ServiceProvider(service = Handler.class, supersedes = "org.netbeans.core.NbErrorManager")
public class GlobalExceptionHandler extends Handler implements Callable<JButton> {

From source file org.xframium.device.logging.ThreadedFileHandler.java

public class ThreadedFileHandler extends Handler {

    private static final String X_NAMESPACE = "org.xframium";

    public ThreadedFileHandler() {
        LogFactory.getLog(X_NAMESPACE);

From source file com.jmstoolkit.logging.JTKHandler.java

/**
 *
 * @author scott
 */
@ManagedResource(objectName = "jmstoolkit:name=jmsLoggingHandler", description = "A JMX-managed JMS Logging Handler")
public class JTKHandler extends Handler {

From source file org.ebayopensource.turmeric.eclipse.core.logging.PluginLogDelegateHandler.java

/**
 * <p>This class is intended to be added to the JDK Logging framework. 
 * This would ensure any logging messages will go through it so that 
 * we could reformat the log message to follow the SOA logging format.</p>
 * @author Yang Yu(yayu@ebay.com)
 *

From source file ductive.log.JDKToCommonsHandler.java

public class JDKToCommonsHandler extends Handler {

    // state

    private final ConcurrentMap<String, Log> logs = new ConcurrentHashMap<>();