We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b07865 commit 7f46f09Copy full SHA for 7f46f09
turbopack/crates/turbo-persistence/src/db.rs
@@ -457,11 +457,7 @@ impl TurboPersistence {
457
{
458
let mut log = self.open_log()?;
459
let time = Local::now();
460
- writeln!(
461
- log,
462
- "Commit {seq:08} {}",
463
- time.format("%YYYY-%mm-%dd %HH:%MM")
464
- )?;
+ writeln!(log, "Commit {seq:08} {}", time.format("%Y-%m-%d %H:%M"))?;
465
for sst in new_sst_files.iter() {
466
let index = sst.sequence_number();
467
let range = sst.range()?;
0 commit comments