diff --git a/python/MooseDocs/extensions/tagging.py b/python/MooseDocs/extensions/tagging.py index 64523d5a3c8d..e0087222c284 100644 --- a/python/MooseDocs/extensions/tagging.py +++ b/python/MooseDocs/extensions/tagging.py @@ -114,13 +114,13 @@ def postExecute(self): target_page = self.translator.findPages(path_value_cut) filter_page = self.translator.findPages("filter/index.html") if len(target_page) != 1: - LOG.warning(str(len(target_page)) + " pages found after truncating address when " - "tagging for page initially at address: " + path_value) + LOG.error(str(len(target_page)) + " pages found after truncating address when " + "tagging for page initially at address: " + path_value) if len(filter_page) != 1: LOG.warning(str(len(filter_page)) + " pages have been found for the filter page " - "when building tagged pages relative links") - # we did not find the pages, cannot search for their relative path - # do the next best thing + "when building relative links for tagged pages!") + # We did not find the pages, thus cannot search for their relative path + # So we simply take the full path value and use it to create the link if (len(target_page) == 0 or len(filter_page) == 0): link_value = '/' + path_value_cut.replace('.md', '.html') else: