aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/TestFleetControllerContext.java
blob: 6fe8f92ac97f272dd288ccb1e7fb064210816680 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

/**
 * @author hakon
 */
public class TestFleetControllerContext extends FleetControllerContextImpl {
    public TestFleetControllerContext(FleetControllerOptions options) {
        super(options);
    }

    public TestFleetControllerContext(FleetControllerId id) {
        super(id);
    }

    @Override
    protected String withLogPrefix(String message) {
        // Include fleet controller index in prefix in tests, since many may be running
        return id() + ": " + message;
    }
}