Skip to content

Commit aa7f32c

Browse files
committed
Fix parenthesis in wrong place
1 parent 7ccc312 commit aa7f32c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/netflix/simianarmy/basic/janitor/BasicJanitorMonkey.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public void doMonkeyBusiness() {
114114
janitor.markResources();
115115
} catch (Exception e) {
116116
monkeyErrors.incrementAndGet();
117-
LOGGER.error(String.format("Got an exception while %s janitor was marking for region %s", janitor.getResourceType()), janitor.getRegion(), e);
117+
LOGGER.error(String.format("Got an exception while %s janitor was marking for region %s", janitor.getResourceType(), janitor.getRegion()), e);
118118
}
119119
LOGGER.info(String.format("Marked %d resources of type %s in the last run.",
120120
janitor.getMarkedResources().size(), janitor.getResourceType().name()));

0 commit comments

Comments
 (0)