aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/logging/Logger.java
blob: 3938b01c7b727974bfcb1b3e9745c571439c39b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. 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);

}