Skip to content

Commit 4545cc0

Browse files
committed
fix format
1 parent 900f200 commit 4545cc0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

opentelemetry/src/logs/record.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ pub trait LogRecord {
66
/// Sets the `event_name` of a record
77
fn set_event_name<T>(&mut self, _name: T)
88
where
9-
T: Into<Cow<'static, str>> {}
9+
T: Into<Cow<'static, str>>,
10+
{
11+
}
1012

1113
/// Sets the time when the event occurred measured by the origin clock, i.e. the time at the source.
1214
fn set_timestamp(&mut self, timestamp: SystemTime);

0 commit comments

Comments
 (0)