aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/org/onap/portalng/history/logging/LoggerProperties.java
blob: f785822ba83e52f841a8e24982d29c6557e0e551 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.onap.portalng.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) {
}