11 lines
267 B
Java
11 lines
267 B
Java
|
|
package stirling.software.SPDF.config;
|
||
|
|
|
||
|
|
import ch.qos.logback.core.PropertyDefinerBase;
|
||
|
|
|
||
|
|
public class LogbackPropertyLoader extends PropertyDefinerBase {
|
||
|
|
@Override
|
||
|
|
public String getPropertyValue() {
|
||
|
|
return InstallationPathConfig.getLogPath();
|
||
|
|
}
|
||
|
|
}
|