Skip to content

Commit

Permalink
render whole error message
Browse files Browse the repository at this point in the history
This breaks the layout style, but at least we get more info on what
failed.

Related to #51.
  • Loading branch information
tmplt committed Oct 27, 2021
1 parent 6a9f33a commit 9c9a80a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ impl diag::DiagnosableError for RTICScopeError {

impl RTICScopeError {
pub fn render(&self) {
log::err(format!("{}", self));
log::err(format!("{:?}", self));

// print eventual hints
use crate::diag::DiagnosableError;
Expand Down

0 comments on commit 9c9a80a

Please sign in to comment.