aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/logging/Logger.java
blob: 468d052903d56876b3e6544bbf53c73563dcd8fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.search.logging;

public interface Logger {

    default LoggerEntry.Builder newEntry() {
        return new LoggerEntry.Builder(this);
    }

    boolean send(LoggerEntry entry);

}