Stirling-PDF/src/main/java/stirling/software/SPDF/config/LogbackPropertyLoader.java

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
338 B
Java
Raw Normal View History

package stirling.software.SPDF.config;
2025-04-28 17:36:27 +01:00
import stirling.software.common.configuration.InstallationPathConfig;
import ch.qos.logback.core.PropertyDefinerBase;
public class LogbackPropertyLoader extends PropertyDefinerBase {
@Override
public String getPropertyValue() {
return InstallationPathConfig.getLogPath();
}
}