Skip to content

Commit

Permalink
chore: use eprintln to report error for runtime_requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
JSerFeng committed Nov 20, 2023
1 parent 26d6e15 commit 0205602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rspack_core/src/code_generation_results.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ impl CodeGenerationResults {
match self.get(module_identifier, runtime) {
Ok(result) => result.runtime_requirements,
Err(_) => {
eprint!("Failed to get runtime requirements for {module_identifier}");
eprintln!("Failed to get runtime requirements for {module_identifier}");
Default::default()
}
}
Expand Down

0 comments on commit 0205602

Please sign in to comment.