Skip to content

Commit

Permalink
change version logging to debg (#124)
Browse files Browse the repository at this point in the history
Co-authored-by: Jade Liu <jade.liu@jade.lan>
  • Loading branch information
domino-jade-liu and Jade Liu committed May 10, 2022
1 parent c00d5be commit 65f7514
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to the `python-domino` library will be documented in this fi

### Changed
* Updated authentication methods precedence.
* Changed version number message logging level to debug

## 1.0.7

Expand Down
2 changes: 1 addition & 1 deletion domino/domino.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, project, api_key=None, host=None, domino_token_file=None, aut

# Get version
self._version = self.deployment_version().get("version")
self._logger.info(f"Domino deployment {host} is running version {self._version}")
self._logger.debug(f"Domino deployment {host} is running version {self._version}")

# Check version compatibility
if not is_version_compatible(self._version):
Expand Down

0 comments on commit 65f7514

Please sign in to comment.