io.tracee.contextlogger.contextprovider.api.Profile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contextprovider-api Show documentation
Show all versions of contextprovider-api Show documentation
Please refer to https://github.com/tracee/contextlogger.
package io.tracee.contextlogger.contextprovider.api;
/**
* enum for profile level.
*/
public enum Profile {
NONE(null),
BASIC("TraceeContextLoggerBasicProfile.properties"),
ENHANCED("TraceeContextLoggerEnhancedProfile.properties"),
FULL("TraceeContextLoggerFullProfile.properties");
private final String filename;
Profile(final String filename) {
this.filename = filename;
}
public String getFilename() {
return this.filename;
}
}