summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/container/logging/AccessLog.java
blob: 5c1a549070c8ea1a8ed235b4e3098693f2ddfab4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.logging;


import com.google.inject.Inject;
import com.yahoo.component.provider.ComponentRegistry;

/**
 * Logs to all the configured access logs.
 *
 * @author Tony Vaagenes
 */
public class AccessLog {

    private ComponentRegistry<AccessLogInterface> implementers;

    @Inject
    public AccessLog(ComponentRegistry<AccessLogInterface> implementers) {
        this.implementers = implementers;
    }

    public static AccessLog voidAccessLog() {
        return new AccessLog(new ComponentRegistry<>());
    }

    public void log(AccessLogEntry accessLogEntry) {
        for (AccessLogInterface log: implementers.allComponents()) {
            log.log(accessLogEntry);
        }
    }

}