We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cceb0a commit 1854931Copy full SHA for 1854931
app/docusign/utils.py
@@ -54,9 +54,9 @@ def get_manifest(manifest_url):
54
try:
55
manifest = requests.get(manifest_url).json()
56
return manifest
57
- except:
58
- current_app.logger.info(f"Could not load code examples manifest. Manifest URL: {manifest_url}")
59
- raise Exception(f"Could not load code examples manifest. Manifest URL: {manifest_url}")
+ except Exception as e:
+ current_app.logger.info(f"Could not load code examples manifest. Manifest URL: {manifest_url} with error {str(e)}")
+ raise Exception(f"Could not load code examples manifest. Manifest URL: {manifest_url} with error {str(e)}")
60
61
def get_example_by_number(manifest, number):
62
for group in manifest["Groups"]:
0 commit comments