Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang committed Nov 18, 2024
1 parent 6e6a913 commit 3cd0633
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/dfx/src/lib/builders/assets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,11 @@ fn build_frontend(
)));
} else if !output.stderr.is_empty() {
// Cannot use eprintln, because it would interfere with the progress bar.
slog::debug!(logger, "Frontend build succeed:\n{}", 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 3cd0633

Please sign in to comment.