Skip to content

Commit

Permalink
Fix error msg length
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavnajindal committed Nov 5, 2024
1 parent 8254178 commit 9f1e466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reporter/otlp_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ func addProfileAttributes[T string | int64](profile *profiles.Profile,
attributeCompositeKey = attr.key + "_" + strconv.Itoa(int(val))
attributeValue = common.AnyValue{Value: &common.AnyValue_IntValue{IntValue: val}}
default:
log.Error("Unsupported attribute value type. Only string and int64 are supported at this time.")
log.Error("Unsupported attribute value type. Only string and int64 are supported.")
return
}

Expand Down

0 comments on commit 9f1e466

Please sign in to comment.