Skip to content

Commit

Permalink
fix: Change log level of failed toml loading
Browse files Browse the repository at this point in the history
Fixes #235
  • Loading branch information
relekang committed Apr 28, 2021
1 parent 3689157 commit 24bb079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion semantic_release/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def _config_from_pyproject(path):
if pyproject:
return pyproject.get("tool", {}).get("semantic_release", {})
except TOMLKitError as e:
logger.debug(f"Could not decode pyproject.toml: {e}")
logger.warning(f"Could not decode pyproject.toml: {e}")

return {}

Expand Down

0 comments on commit 24bb079

Please sign in to comment.