summaryrefslogtreecommitdiffstats
path: root/container-accesslogging/src/main/java/com/yahoo/container/logging/YApacheAccessLog.java
blob: 6fb0cd8161a152290067051908605fb8328ec212 (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 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.yahoo.container.core.AccessLogConfig;

import java.util.logging.Level;

/**
 * Log a message in yApache log format.
 *
 * @author tinyv
 */
public final class YApacheAccessLog implements  AccessLogInterface {

    private final AccessLogHandler logHandler;

    public YApacheAccessLog(AccessLogConfig config) {
        logHandler = new AccessLogHandler(config.fileHandler());
    }

    @Override
    public void log(final AccessLogEntry logEntry) {
        logHandler.access.log(Level.INFO, new YApacheFormatter(logEntry).format() + '\n');
    }


    // TODO: This is never called. We should have a DI provider and call this method from its deconstruct.
    public void shutdown() {
        logHandler.shutdown();
    }

    void rotateNow() {
        logHandler.rotateNow();
    }

}