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

package com.yahoo.search.logging;

abstract class AbstractSpoolingLogger extends AbstractThreadedLogger {

    @Override
    protected void dequeue(LoggerEntry entry) {
        // Todo: add to spooler etc
    }

}