All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.espertech.esperio.http.EventLogger Maven / Gradle / Ivy

There is a newer version: 9.0.0
Show newest version
package com.espertech.esperio.http;

import org.apache.http.nio.NHttpConnection;
import org.apache.http.nio.protocol.EventListener;
import org.apache.http.HttpException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import java.io.IOException;

public class EventLogger implements EventListener {

    private static Log log = LogFactory.getLog(EventLogger.class);

    public void connectionOpen(final NHttpConnection conn) {
        if (log.isInfoEnabled()) {
            log.info("Connection open: " + conn);
        }
    }

    public void connectionTimeout(final NHttpConnection conn) {
        if (log.isInfoEnabled()) {
            log.info("Connection timed out: " + conn);
        }
    }

    public void connectionClosed(final NHttpConnection conn) {
        if (log.isInfoEnabled()) {
            log.info("Connection closed: " + conn);
        }
    }

    public void fatalIOException(final IOException ex, final NHttpConnection conn) {
        log.error("I/O error: " + ex.getMessage());
    }

    public void fatalProtocolException(final HttpException ex, final NHttpConnection conn) {
        log.error("HTTP error: " + ex.getMessage());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy