Skip to content

Commit

Permalink
remove inital compilation message by default (#4790)
Browse files Browse the repository at this point in the history
### Description

removes the

```
event - initial compilation 3.643ms
```

message
  • Loading branch information
sokra authored May 3, 2023
1 parent 4a0ec26 commit bdf96aa
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions crates/turbopack-cli/src/dev/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,12 +416,6 @@ pub async fn start_server(args: &DevArguments) -> Result<()> {
start = FormatDuration(start.elapsed()),
memory = FormatBytes(TurboMalloc::memory_usage())
);
} else {
println!(
"{event_type} - initial compilation {start}",
event_type = "event".purple(),
start = FormatDuration(start.elapsed()),
);
}

let mut progress_counter = 0;
Expand Down

0 comments on commit bdf96aa

Please sign in to comment.