mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-23 16:05:09 +00:00
13 lines
338 B
Java
13 lines
338 B
Java
package stirling.software.SPDF.config;
|
|
|
|
import stirling.software.common.configuration.InstallationPathConfig;
|
|
|
|
import ch.qos.logback.core.PropertyDefinerBase;
|
|
|
|
public class LogbackPropertyLoader extends PropertyDefinerBase {
|
|
@Override
|
|
public String getPropertyValue() {
|
|
return InstallationPathConfig.getLogPath();
|
|
}
|
|
}
|