Skip to content

Commit

Permalink
chore: update logging level for latest gtf release logs (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrzhan authored Jan 10, 2024
1 parent db8f54d commit 09170c6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions gdk/common/config/TestConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ def _set_gtf_config(self, test_config):
if release_name is not None:
self.gtf_version = release_name
self.latest_gtf_version = release_name
logging.info("Discovered %s as latest GTF release name.", self.gtf_version)
logging.debug("Discovered %s as latest GTF release name.", self.gtf_version)
else:
logging.info("Unable to get the latest GTF release name. Using %s as the default value.", self.gtf_version)
logging.debug("GTF release name was found to be None, so using default.")
logging.debug("GTF release name was found to be None. Using %s as the default value.", self.gtf_version)
except Exception as e:
logging.info("Unable to get the latest GTF release name. Using %s as the default value.", self.gtf_version)
logging.debug("Unable to get the latest GTF release name. Using %s as the default value.", self.gtf_version)
logging.debug("Exception information for GTF release name API call: %s", str(e))
self.gtf_version = (test_config.get("gtf_version")
if "gtf_version" in test_config
Expand Down

0 comments on commit 09170c6

Please sign in to comment.