Skip to content

Commit

Permalink
remove startup message by default (#49157)
Browse files Browse the repository at this point in the history
### What?

removes the 

```
event - startup 3.643ms
```

message

### Why?

no useful information in this message since it's just too fast

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
sokra and kodiakhq[bot] committed May 4, 2023
1 parent d543fd1 commit 0a9afce
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/next-swc/crates/next-dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,12 +509,6 @@ pub async fn start_server(options: &DevServerOptions) -> Result<()> {
start = FormatDuration(start.elapsed()),
memory = FormatBytes(TurboMalloc::memory_usage())
);
} else {
println!(
"{event_type} - startup {start}",
event_type = "event".purple(),
start = FormatDuration(start.elapsed()),
);
}

let mut progress_counter = 0;
Expand Down

0 comments on commit 0a9afce

Please sign in to comment.