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

@@ -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: