Skip to content

Commit 9364588

Browse files
committed
Fix formatting
1 parent 4b22c27 commit 9364588

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
@@ -682,9 +682,12 @@ impl Inner {
682682
datetime = datetime.strip_suffix('.')?;
683683
}
684684

685-
Some(PrimitiveDateTime::parse(datetime, &self.date_format)
686-
.ok()?
687-
.assume_utc().into())
685+
Some(
686+
PrimitiveDateTime::parse(datetime, &self.date_format)
687+
.ok()?
688+
.assume_utc()
689+
.into(),
690+
)
688691
})?;
689692
Some((entry, created))
690693
})

0 commit comments

Comments
 (0)