Skip to content

Commit

Permalink
#1877 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Feb 27, 2024
1 parent 52bca8d commit b2254f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/rultor/agents/aws/StartsInstance.java
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private Instance run(final String talk) {
.withInstanceIds(iid)
);
final InstanceState state = res.getInstanceStatuses().get(0).getInstanceState();
Logger.info(this, "AWS instance %s state: %s", state.getName());
Logger.info(this, "AWS instance %s state: %s", instance, state.getName());
if ("running".equals(state.getName())) {
break;
}
Expand Down

0 comments on commit b2254f3

Please sign in to comment.