Skip to content

Commit 5f4b837

Browse files
committed
fmt
1 parent 3726087 commit 5f4b837

File tree

1 file changed

+2
-2
lines changed
  • opentelemetry-appender-tracing/src

1 file changed

+2
-2
lines changed

opentelemetry-appender-tracing/src/layer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,10 @@ impl<LR: LogRecord> tracing::field::Visit for EventVisitor<'_, LR> {
123123
}
124124
if let Ok(signed) = i64::try_from(value) {
125125
self.log_record
126-
.add_attribute(Key::new(field.name()), AnyValue::from(signed));
126+
.add_attribute(Key::new(field.name()), AnyValue::from(signed));
127127
} else {
128128
self.log_record
129-
.add_attribute(Key::new(field.name()), AnyValue::from(format!("{value:?}")));
129+
.add_attribute(Key::new(field.name()), AnyValue::from(format!("{value:?}")));
130130
}
131131
}
132132

0 commit comments

Comments
 (0)