Skip to content

Commit

Permalink
logging error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Apr 16, 2021
1 parent 9574ac8 commit 128df53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plone/app/blocks/utils.py
Expand Up @@ -72,10 +72,10 @@ def resolve(url, resolved=None):
if resolved is None:
try:
resolved = resolveResource(url)
except Exception:
except Exception as e:
logger.exception(
'There was an error while resolving the tile: {0}'.format(
url,
'There was an error while resolving the tile: {0} {1}'.format(
url, str(e)
),
)
scheme, netloc, path, params, query, fragment = parse.urlparse(url)
Expand Down

0 comments on commit 128df53

Please sign in to comment.