summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/logging/LocalDiskLogger.java
blob: f5d8c31be5d2cebb4ed578df4952202f6b9b1e50 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.search.logging;

import java.io.FileWriter;
import java.io.IOException;

public class LocalDiskLogger extends AbstractThreadedLogger {

    private final String logFilePath;

    public LocalDiskLogger(LocalDiskLoggerConfig config) {
        logFilePath = config.path();
    }

    @Override
    boolean transport(LoggerEntry entry) {
        String json = entry.toJson();
        try (FileWriter fw = new FileWriter(logFilePath, true)) {
            fw.write(json);
            fw.write(System.getProperty("line.separator"));
            return true;
        } catch (IOException e) {
            e.printStackTrace();
            return false;
        }
    }

}