aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/VoidConnectionLog.java
blob: 5d33cc0835e1cc25da5c2132fa506c4788036f48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.jdisc.http.server.jetty;

import com.yahoo.container.logging.ConnectionLog;
import com.yahoo.container.logging.ConnectionLogEntry;

/**
 * @author mortent
 */
public class VoidConnectionLog implements ConnectionLog {

    @Override
    public void log(ConnectionLogEntry connectionLogEntry) {
    }
}