Lower the log severity when links don't resolve

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-04-07 22:39:42 -04:00
parent 9ec021241c
commit 0065edfae9
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
* Fix multiple tag selection wizard step.
* Change the required permission for the checkout info link from
document check in to document checkout details view.
* Lower the log severity when links don't resolve.
3.1.10 (2019-04-04)
===================

View File

@@ -419,7 +419,7 @@ class Link(object):
try:
resolved_link.url = node.render(context)
except Exception as exception:
logger.error(
logger.debug(
'Error resolving link "%s" URL; %s', self.text, exception
)
elif self.url: