summaryrefslogtreecommitdiffstats
path: root/config-model-api/src/main/java/com/yahoo/config/application/api/DeployLogger.java
blob: d9ebd902e3e383f9aeda1b20c37b82820824076f (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.application.api;

import java.util.logging.Level;

/**
 * Used during application deployment to propagate messages to the end user
 * 
 * @author Ulf Lillengen
 */
public interface DeployLogger {

    /** Log a message unrelated to the application package, e.g. internal error/status. */
    void log(Level level, String message);

    /**
     * Log a message related to the application package. These messages should be actionable by the user, f.ex. to
     * signal usage of invalid/deprecated syntax
     */
    default void logApplicationPackage(Level level, String message) {
        log(level, message);
    }

}