Chore: Changes empty ontology logging from warning to info (#964)

<!-- .github/pull_request_template.md -->

## Description
Changes empty ontology logging from warning to info

## DCO Affirmation
I affirm that all code in every commit of this pull request conforms to
the terms of the Topoteretes Developer Certificate of Origin.
This commit is contained in:
hajdul88 2025-06-11 09:52:51 +02:00 committed by GitHub
parent 042e533975
commit 9d5835042a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,7 +26,7 @@ class OntologyResolver:
self.ontology: Ontology = get_ontology(ontology_file).load()
logger.info("Ontology loaded successfully from file: %s", ontology_file)
else:
logger.warning(
logger.info(
"Ontology file '%s' not found. Using fallback ontology at %s",
ontology_file,
fallback_url,