Reduce log spam.
This commit is contained in:
parent
5492d67962
commit
0dd7653de2
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue