diff --git a/lib/core/libimagstore/src/store.rs b/lib/core/libimagstore/src/store.rs index 9ea1ba8d..500cf58d 100644 --- a/lib/core/libimagstore/src/store.rs +++ b/lib/core/libimagstore/src/store.rs @@ -752,10 +752,7 @@ impl Store { impl Debug for Store { fn fmt(&self, fmt: &mut Formatter) -> RResult<(), FMTError> { - write!(fmt, - r#"Store\n\tlocation = {:?}\n\tentries = {:?}\n"#, - self.location, - self.entries) + writeln!(fmt, "Store location = {:?}, entries = {:?}", self.location, self.entries) } }