de.bund.bva.isyfact.logging.config.IsyLoggingBoundaryLoggerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isy-logging Show documentation
Show all versions of isy-logging Show documentation
Stellt eine Komponente für das Logging bereit.
The newest version!
package de.bund.bva.isyfact.logging.config;
/**
* Properties, die das Loggen an Systemgrenzen konfigurieren.
*/
public class IsyLoggingBoundaryLoggerProperties extends AbstractBoundaryLoggerProperties {
/**
* Erzeugt eine neue Instanz der Konfigurationsparameter.
*/
public IsyLoggingBoundaryLoggerProperties() {
// Default-Werte setzen
setPointcut("@within(de.bund.bva.isyfact.logging.annotation.Systemgrenze)");
setLoggeDauer(true);
setLoggeAufruf(true);
setLoggeErgebnis(true);
setLoggeDaten(false);
setLoggeDatenBeiException(true);
}
}