Skip to content

Commit

Permalink
Add issue creation link
Browse files Browse the repository at this point in the history
  • Loading branch information
0marperez committed Nov 27, 2024
1 parent 0155639 commit a51be70
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ public class BusinessMetricsInterceptor : HttpInterceptor {
private fun formatMetrics(metrics: MutableSet<BusinessMetric>, logger: Logger): String {
val allowedMetrics = metrics.filter {
if (it.identifier.length > 2) {
logger.warn { "Business metric '${it.identifier}' will be skipped due to length being > 2" }
logger.warn {
"Business metric '${it.identifier}' will be skipped due to length being > 2. " +
"This is likely a bug. Please raise an issue at https://github.com/awslabs/aws-sdk-kotlin/issues/new/choose"
}
false
} else {
true
Expand Down

0 comments on commit a51be70

Please sign in to comment.