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 975733c commit 13a67e6Copy full SHA for 13a67e6
opentelemetry-api/src/opentelemetry/attributes/__init__.py
@@ -68,9 +68,10 @@ def _clean_attribute(
68
# Reject attribute value if sequence contains a value with an incompatible type.
69
if element_type not in _VALID_ATTR_VALUE_TYPES:
70
_logger.warning(
71
- "Invalid type %s in attribute value sequence. Expected one of "
+ "Invalid type %s in attribute '%s' value sequence. Expected one of "
72
"%s or None",
73
element_type.__name__,
74
+ key,
75
[
76
valid_type.__name__
77
for valid_type in _VALID_ATTR_VALUE_TYPES
0 commit comments