summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-05-30 11:35:42 +0200
committerMatthias Beyer <mail@beyermatthias.de>2019-05-31 12:48:00 +0200
commitd02d53594e8b95786f4cff93aab3c87132889bf3 (patch)
tree4c204caeaca2766bf7d0500bfcabe52d62c2c6b3
parentd2a5e8fb59b2f8a780d0ead752c38853ece7380f (diff)
Fix debug output message
-rw-r--r--lib/entry/libimagentryurl/src/linker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/entry/libimagentryurl/src/linker.rs b/lib/entry/libimagentryurl/src/linker.rs
index fdc0b9b9..f4095069 100644
--- a/lib/entry/libimagentryurl/src/linker.rs
+++ b/lib/entry/libimagentryurl/src/linker.rs
@@ -131,7 +131,7 @@ impl UrlLinker for Entry {
// then add an internal link to the new file or return an error if this fails
let _ = self.add_internal_link(file.deref_mut())?;
- debug!("Error adding internal link");
+ debug!("Added internal link");
Ok((link_already_exists, file_id))
})