Skip to content

Commit

Permalink
fix: pass correct string type to logid log
Browse files Browse the repository at this point in the history
  • Loading branch information
nfejzic committed Aug 19, 2023
1 parent 4896019 commit 05dd956
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions render/src/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ pub trait Renderer<T: OutputFormat> {
Err(err) if err == RenderError::Unimplemented => {
logid::log!(
err,
&format!(
format!(
"Rendering of block '{}' is not implemented",
block.variant_str()
),
Expand Down Expand Up @@ -204,7 +204,7 @@ pub trait Renderer<T: OutputFormat> {
Err(err) if err == RenderError::Unimplemented => {
logid::log!(
err,
&format!(
format!(
"Rendering of inline '{}' is not implemented",
inline.variant_str()
),
Expand Down

0 comments on commit 05dd956

Please sign in to comment.