Skip to content

Commit a51be70

Browse files
committed
Add issue creation link
1 parent 0155639 commit a51be70

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

aws-runtime/aws-http/common/src/aws/sdk/kotlin/runtime/http/interceptors/BusinessMetricsInterceptor.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ public class BusinessMetricsInterceptor : HttpInterceptor {
4444
private fun formatMetrics(metrics: MutableSet<BusinessMetric>, logger: Logger): String {
4545
val allowedMetrics = metrics.filter {
4646
if (it.identifier.length > 2) {
47-
logger.warn { "Business metric '${it.identifier}' will be skipped due to length being > 2" }
47+
logger.warn {
48+
"Business metric '${it.identifier}' will be skipped due to length being > 2. " +
49+
"This is likely a bug. Please raise an issue at https://github.com/awslabs/aws-sdk-kotlin/issues/new/choose"
50+
}
4851
false
4952
} else {
5053
true

0 commit comments

Comments
 (0)