Expunge .platform. from config project

Fixes gh-12
This commit is contained in:
Dave Syer
2014-10-13 14:16:47 +01:00
parent 0800d33a75
commit 3f05eddc42
11 changed files with 13 additions and 13 deletions

View File

@@ -60,7 +60,7 @@ public class BootstrapApplicationListener implements
@Override
public void onApplicationEvent(ApplicationEnvironmentPreparedEvent event) {
Environment environment = event.getEnvironment();
if (!environment.getProperty("spring.platform.bootstrap.enabled", Boolean.class,
if (!environment.getProperty("spring.cloud.bootstrap.enabled", Boolean.class,
true)) {
return;
}

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<!-- logger name="org.springframework.platform" level="DEBUG"/-->
<!-- logger name="org.springframework.cloud" level="DEBUG"/-->
<logger name="org.springframework" level="INFO"/>
</configuration>