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

import java.util.List;

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

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