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 e7eb7d1 commit fbe687aCopy full SHA for fbe687a
opentelemetry-appender-tracing/src/layer.rs
@@ -114,6 +114,8 @@ impl<LR: LogRecord> tracing::field::Visit for EventVisitor<'_, LR> {
114
.add_attribute(Key::new(field.name()), AnyValue::from(value));
115
}
116
117
+ // TODO: We might need to do similar for record_i128,record_u128 too
118
+ // to avoid stringification, unless needed.
119
fn record_u64(&mut self, field: &tracing::field::Field, value: u64) {
120
#[cfg(feature = "experimental_metadata_attributes")]
121
if is_duplicated_metadata(field.name()) {
0 commit comments