Using "cryptomator" prefix for all JVM args now [ci skip]

This commit is contained in:
Sebastian Stenzel
2016-02-29 18:44:50 +01:00
parent be7b875be7
commit 8fd0bbd9ed
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ public class SettingsProvider implements Provider<Settings> {
}
private Path getSettingsPath() throws IOException {
String settingsPathProperty = System.getProperty("settingsPath");
String settingsPathProperty = System.getProperty("cryptomator.settingsPath");
if (settingsPathProperty == null) {
return SETTINGS_DIR.resolve(SETTINGS_FILE);
} else {

View File

@@ -19,7 +19,7 @@
<ThresholdFilter level="WARN" onMatch="ACCEPT" onMismatch="DENY" />
</Console>
<!-- <File fileName="${sys:logPath}" ...> not feasible for paths like ~/foo/bar -->
<ConfigurableFile name="File" pathPropertyName="logPath">
<ConfigurableFile name="File" pathPropertyName="cryptomator.logPath">
<PatternLayout pattern="%16d %-5p [%c{1}:%L] %m%n" />
</ConfigurableFile>
</Appenders>