aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/logging/LocalDiskLogger.java
blob: cb2fa69059ac6ccb6934228dadd17dd558bfff74 (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 Vespa.ai. 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
    public boolean transport(LoggerEntry entry) {
        String json = entry.serialize();
        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;
        }
    }

}