fix logging message

This commit is contained in:
Shay Banon 2012-06-27 14:13:14 +02:00
parent 08b37e3e6e
commit 51d46154eb
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ public class AwsEc2Service extends AbstractLifecycleComponent<AwsEc2Service> {
if (componentSettings.get("ec2.endpoint") != null) {
String endpoint = componentSettings.get("ec2.endpoint");
logger.debug("using explicit ec2 region [{}]", endpoint);
logger.debug("using explicit ec2 endpoint [{}]", endpoint);
client.setEndpoint(endpoint);
} else if (componentSettings.get("region") != null) {
String region = componentSettings.get("region").toLowerCase();

View File

@ -92,7 +92,7 @@ public class AwsS3Service extends AbstractLifecycleComponent<AwsS3Service> {
if (componentSettings.get("s3.endpoint") != null) {
String endpoint = componentSettings.get("s3.endpoint");
logger.debug("using explicit s3 region [{}]", endpoint);
logger.debug("using explicit s3 endpoint [{}]", endpoint);
client.setEndpoint(endpoint);
} else if (componentSettings.get("region") != null) {
String endpoint;