Skip to content

Commit

Permalink
improve preset
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed May 17, 2023
1 parent 6510a78 commit 31016b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/next-swc/crates/next-dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@ pub async fn start_server(options: &DevServerOptions) -> Result<()> {
// Trace presets
match trace.as_str() {
"next" => {
trace = "root=info,next_dev=info,next_core=info,next_font=info".to_string();
trace = "root=info,next_dev=info,next_core=info,next_font=info,turbopack_node=info"
.to_string();
}
"turbopack" => {
trace = "root=info,next_dev=info,next_core=info,next_font=info,turbopack=info,\
Expand Down

0 comments on commit 31016b7

Please sign in to comment.