mirror of https://github.com/helix-editor/helix
refactor: uneeded string conversion for Display type
parent
5a671e65fd
commit
f857a98671
|
@ -854,7 +854,7 @@ impl Document {
|
||||||
} else if !output.stderr.is_empty() {
|
} else if !output.stderr.is_empty() {
|
||||||
log::debug!(
|
log::debug!(
|
||||||
"Formatter printed to stderr: {}",
|
"Formatter printed to stderr: {}",
|
||||||
String::from_utf8_lossy(&output.stderr).to_string()
|
String::from_utf8_lossy(&output.stderr)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue