Skip to content

Commit

Permalink
[DROOLS-7603] remove spuirous '%' sign in log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofusco committed Jan 15, 2024
1 parent f86a26f commit b2e394d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class MemoryMonitorUtil {
System.setProperty(MEMORY_OCCUPATION_EXIT_ABOVE_THRESHOLD_PROPERTY, exitAboveThresholdEnvValue);
}
MEMORY_OCCUPATION_EXIT_ABOVE_THRESHOLD = Boolean.getBoolean(MEMORY_OCCUPATION_EXIT_ABOVE_THRESHOLD_PROPERTY);
LOG.info("Exit above memory occupation threshold set to {}%", MEMORY_OCCUPATION_EXIT_ABOVE_THRESHOLD);
LOG.info("Exit above memory occupation threshold set to {}", MEMORY_OCCUPATION_EXIT_ABOVE_THRESHOLD);
}

private MemoryMonitorUtil() {
Expand Down

0 comments on commit b2e394d

Please sign in to comment.