Skip to content

Commit

Permalink
Use place holder for logging invalid format (#120)
Browse files Browse the repository at this point in the history
Use place holder for logging invalid format for better performance
  • Loading branch information
CodingParsley authored and m-ghazanfar committed May 29, 2023
1 parent 4656854 commit 87d75fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private List<InputRow> parseMetric(Metric metric, Map<String, Object> resourceAt
case HISTOGRAM:
case SUMMARY:
default:
log.trace("Metric type " + metric.getDataCase() + " is not supported or deprecated.");
log.trace("Metric type {} is not supported", metric.getDataCase());
inputRows = Collections.emptyList();

}
Expand Down

0 comments on commit 87d75fd

Please sign in to comment.