nicer log message for when the properties file isn't found
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user