File tree 2 files changed +3
-3
lines changed
opentelemetry-api/src/opentelemetry/attributes
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ - Use Attribute rather than boundattribute in logrecord
11
+ ([ #3567 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3567 ) )
10
12
- Fix flush error when no LoggerProvider configured for LoggingHandler
11
13
([ #3608 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3608 ) )
12
14
- Fix ` OTLPMetricExporter ` ignores ` preferred_aggregation ` property
Original file line number Diff line number Diff line change @@ -157,9 +157,7 @@ def __init__(
157
157
self ._immutable = immutable
158
158
159
159
def __repr__ (self ):
160
- return (
161
- f"{ type (self ).__name__ } ({ dict (self ._dict )} , maxlen={ self .maxlen } )"
162
- )
160
+ return f"{ dict (self ._dict )} "
163
161
164
162
def __getitem__ (self , key ):
165
163
return self ._dict [key ]
You can’t perform that action at this time.
0 commit comments