Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
noise64 committed Nov 19, 2024
1 parent d2a7114 commit 5696a32
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wasm-rpc-stubgen/src/wit_resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,10 @@ impl ResolvedWitApplication {
Err(recursive_path) => {
validation.add_error(format!(
"Found component interface package use cycle: {}",
recursive_path.iter().map(|s| s.as_str()).join(", ")
recursive_path
.iter()
.map(|s| s.as_str().log_color_error_highlight())
.join(", ")
));
}
}
Expand Down

0 comments on commit 5696a32

Please sign in to comment.