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 3a0ef76 commit 352d5e5Copy full SHA for 352d5e5
samtranslator/parser/parser.py
@@ -63,7 +63,7 @@ def _validate(self, sam_template, parameter_values):
63
validation_errors = validator.validate(sam_template)
64
65
if validation_errors:
66
- LOG.warn("Template schema validation reported the following errors: " + ", ".join(validation_errors))
+ LOG.warning("Template schema validation reported the following errors: %s", validation_errors)
67
except Exception as e:
68
# Catching any exception and not re-raising to make sure any validation process won't break transform
69
LOG.exception("Exception from SamTemplateValidator: %s", e)
0 commit comments