We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0155639 commit a51be70Copy full SHA for a51be70
aws-runtime/aws-http/common/src/aws/sdk/kotlin/runtime/http/interceptors/BusinessMetricsInterceptor.kt
@@ -44,7 +44,10 @@ public class BusinessMetricsInterceptor : HttpInterceptor {
44
private fun formatMetrics(metrics: MutableSet<BusinessMetric>, logger: Logger): String {
45
val allowedMetrics = metrics.filter {
46
if (it.identifier.length > 2) {
47
- logger.warn { "Business metric '${it.identifier}' will be skipped due to length being > 2" }
+ 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
+ }
51
false
52
} else {
53
true
0 commit comments