nicer log message for when the properties file isn't found

This commit is contained in:
Christopher Smith
2014-07-22 22:09:19 -05:00
parent 2f76b86c91
commit b047103aed

View File

@@ -126,6 +126,11 @@ public class LocalConfigConnector extends AbstractCloudConnector<UriBasedService
return;
}
if (!propertiesFile.exists()) {
logger.info("properties file " + propertiesFile + " does not exist; probably running in a real cloud");
return;
}
logger.info("loading service definitions from properties file " + propertiesFile);
try {