Reduce log spam.

This commit is contained in:
Nicolas Van Bossuyt 2022-12-14 11:16:21 +01:00
parent 5492d67962
commit 0dd7653de2

View file

@ -49,10 +49,8 @@ def doInjects(manifests: dict) -> dict:
def providersFor(key: str, manifests: dict) -> dict:
print("providersFor: " + key)
result = []
for k in manifests:
print(" " + k)
if manifests[k]["enabled"] and key in manifests[k].get("provide", []):
result.append(k)
return result
@ -180,8 +178,6 @@ def cincludes(manifests: dict) -> str:
return " -I" + " -I".join(include_paths)
def loadAll(basedirs: list[str], target: dict) -> dict:
manifests = loadJsons(basedirs)
manifests = filter(manifests, target)