Skip to content

Commit

Permalink
refact: change log level for repositoriesdb messages
Browse files Browse the repository at this point in the history
  • Loading branch information
sale3 committed Dec 3, 2024
1 parent f3a3ec6 commit 8260eab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions taf/repositoriesdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def _get_deduplicated_target_or_auth_repositories(
)
all_repositories = loaded_repositories_dict.get(auth_repo.path)
if all_repositories is None:
taf_logger.error(
taf_logger.debug(
"{} defined in authentication repository {} have not been loaded",
repositories_msg,
auth_repo.path,
Expand All @@ -548,7 +548,7 @@ def _get_deduplicated_target_or_auth_repositories(
# persuming that the newest commit is the last one
for commit in commits:
if commit not in all_repositories:
taf_logger.error(
taf_logger.debug(
"{} defined in authentication repository {} at revision {} have "
"not been loaded",
repositories_msg,
Expand Down Expand Up @@ -630,7 +630,7 @@ def _get_repositories(auth_repo, commit=None, load_auth=False):

repositories = all_repositories.get(commit)
if repositories is None:
taf_logger.error(
taf_logger.debug(
"{} defined in authentication repository {} at revision {} have "
"not been loaded",
repositories_msg,
Expand Down

0 comments on commit 8260eab

Please sign in to comment.