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 3726087 commit 5f4b837Copy full SHA for 5f4b837
opentelemetry-appender-tracing/src/layer.rs
@@ -123,10 +123,10 @@ impl<LR: LogRecord> tracing::field::Visit for EventVisitor<'_, LR> {
123
}
124
if let Ok(signed) = i64::try_from(value) {
125
self.log_record
126
- .add_attribute(Key::new(field.name()), AnyValue::from(signed));
+ .add_attribute(Key::new(field.name()), AnyValue::from(signed));
127
} else {
128
129
- .add_attribute(Key::new(field.name()), AnyValue::from(format!("{value:?}")));
+ .add_attribute(Key::new(field.name()), AnyValue::from(format!("{value:?}")));
130
131
132
0 commit comments