Skip to content

Commit

Permalink
debug log when frontend build succeed instead of warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang committed Nov 18, 2024
1 parent 3494fc7 commit e01e7d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dfx/src/lib/builders/assets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ fn build_frontend(
)));
} else if !output.stderr.is_empty() {
// Cannot use eprintln, because it would interfere with the progress bar.
slog::warn!(logger, "{}", String::from_utf8_lossy(&output.stderr));
slog::debug!(logger, "Frontend build succeed:\n{}", String::from_utf8_lossy(&output.stderr));
}
}
Ok(())
Expand Down

0 comments on commit e01e7d7

Please sign in to comment.