aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/org/onap/portal/history/logging/LoggerProperties.java
blob: c142b4fdefa9b8dc560232fef499b64d422e8c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.onap.portal.history.logging;

import java.util.List;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties("logger")
public record LoggerProperties(
    String traceIdHeaderName,
    Boolean enabled, List<String> excludePaths) {
}