Skip to content

Commit

Permalink
Change logger output for BMTWrapper and TRAPISchemaValidator to 'debu…
Browse files Browse the repository at this point in the history
…g' mode output, reducing unnecessary chatter on the logging console
  • Loading branch information
RichardBruskiewich committed Mar 27, 2024
1 parent f345a3d commit 98a8f0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reasoner_validator/biolink/__init__.py
Expand Up @@ -91,7 +91,7 @@ def __init__(self, biolink_version: Optional[str] = None):
else:
self.biolink_version = "suppress"

logger.info(f"Resolved Biolink Model Version: '{self.biolink_version}'")
logger.debug(f"Resolved Biolink Model Version: '{self.biolink_version}'")

def get_biolink_version(self) -> str:
"""
Expand Down
2 changes: 1 addition & 1 deletion reasoner_validator/trapi/__init__.py
Expand Up @@ -249,7 +249,7 @@ def __init__(
self.trapi_version = get_latest_version(trapi_version) \
if trapi_version else get_latest_version(self.DEFAULT_TRAPI_VERSION)

logger.info(f"TRAPISchemaValidator set to TRAPI Version: '{self.trapi_version}'")
logger.debug(f"TRAPISchemaValidator set to TRAPI Version: '{self.trapi_version}'")

ValidationReporter.__init__(
self,
Expand Down

0 comments on commit 98a8f0d

Please sign in to comment.