aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/logging/AccessLog.java
blob: 1bd45069827c4627fbb988dbdc9ec52da5ad062e (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
33
34
35
36
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.logging;


import com.yahoo.component.annotation.Inject;
import com.yahoo.component.provider.ComponentRegistry;

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

    public static final AccessLog NONE_INSTANCE = new AccessLog(new ComponentRegistry<>());

    private final ComponentRegistry<RequestLogHandler> implementers;

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

    public static AccessLog voidAccessLog() {
        return NONE_INSTANCE;
    }

    @Override
    public void log(RequestLogEntry entry) {
        for (RequestLogHandler handler: implementers.allComponents()) {
            handler.log(entry);
        }
    }

}