Fix debug output message

This commit is contained in:
Matthias Beyer 2019-05-30 11:35:42 +02:00
parent d2a5e8fb59
commit d02d53594e

View file

@ -131,7 +131,7 @@ impl UrlLinker for Entry {
// then add an internal link to the new file or return an error if this fails // then add an internal link to the new file or return an error if this fails
let _ = self.add_internal_link(file.deref_mut())?; let _ = self.add_internal_link(file.deref_mut())?;
debug!("Error adding internal link"); debug!("Added internal link");
Ok((link_already_exists, file_id)) Ok((link_already_exists, file_id))
}) })