Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tbavelier committed Aug 23, 2024
1 parent eac6991 commit 4138725
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/datadog/jmxfetch/Instance.java
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ public Instance(
this.maxReturnedMetrics = Integer.parseInt((String) maxReturnedMetrics);
} catch (NumberFormatException e) {
log.warn(
"Cannot convert max_returned_metrics to integer in your instance configuration. Defaulting to '{}'.",
MAX_RETURNED_METRICS);
"Cannot convert max_returned_metrics to integer in your instance configuration."
+ " Defaulting to {}.", MAX_RETURNED_METRICS);
this.maxReturnedMetrics = MAX_RETURNED_METRICS;
}
} else {
Expand Down

0 comments on commit 4138725

Please sign in to comment.