Skip to content

Commit 7f46f09

Browse files
committed
fixup
1 parent 2b07865 commit 7f46f09

File tree

1 file changed

+1
-5
lines changed
  • turbopack/crates/turbo-persistence/src

1 file changed

+1
-5
lines changed

turbopack/crates/turbo-persistence/src/db.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -457,11 +457,7 @@ impl TurboPersistence {
457457
{
458458
let mut log = self.open_log()?;
459459
let time = Local::now();
460-
writeln!(
461-
log,
462-
"Commit {seq:08} {}",
463-
time.format("%YYYY-%mm-%dd %HH:%MM")
464-
)?;
460+
writeln!(log, "Commit {seq:08} {}", time.format("%Y-%m-%d %H:%M"))?;
465461
for sst in new_sst_files.iter() {
466462
let index = sst.sequence_number();
467463
let range = sst.range()?;

0 commit comments

Comments
 (0)