Skip to content

Commit

Permalink
Correct an SLF4J logger call
Browse files Browse the repository at this point in the history
Add one missing '{}'.
  • Loading branch information
dtrebbien committed Nov 6, 2017
1 parent 7561954 commit f7d01cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public Integer apply(NetworkInterface networkInterface) {
);

if (result.getNetworkInterfaces().isEmpty()) {
logger.info("No ip is free to be associated with this instance. Candidate ips are: {} for zone: ", ips, myZone);
logger.info("No ip is free to be associated with this instance. Candidate ips are: {} for zone: {}", ips, myZone);
} else {
NetworkInterface selected = ipsOrder.min(result.getNetworkInterfaces());
ec2Service.attachNetworkInterface(
Expand Down

0 comments on commit f7d01cb

Please sign in to comment.