Skip to content

Commit 8635ea3

Browse files
committed
Fix formatting
1 parent 724f3f9 commit 8635ea3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tracing-appender/src/rolling.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -687,9 +687,12 @@ impl Inner {
687687
datetime = datetime.strip_suffix('.')?;
688688
}
689689

690-
Some(PrimitiveDateTime::parse(datetime, &self.date_format)
691-
.ok()?
692-
.assume_utc().into())
690+
Some(
691+
PrimitiveDateTime::parse(datetime, &self.date_format)
692+
.ok()?
693+
.assume_utc()
694+
.into(),
695+
)
693696
})?;
694697
Some((entry, created))
695698
})

0 commit comments

Comments
 (0)