aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/jdisc/http/server/jetty/VoidConnectionLog.java
blob: 8e638749e058d9b4d65ac1f3d988aa5d28bf6ca0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. 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) {
    }
}