Reduce log spam.
This commit is contained in:
parent
5492d67962
commit
0dd7653de2
1 changed files with 0 additions and 4 deletions
|
|
@ -49,10 +49,8 @@ def doInjects(manifests: dict) -> dict:
|
||||||
|
|
||||||
|
|
||||||
def providersFor(key: str, manifests: dict) -> dict:
|
def providersFor(key: str, manifests: dict) -> dict:
|
||||||
print("providersFor: " + key)
|
|
||||||
result = []
|
result = []
|
||||||
for k in manifests:
|
for k in manifests:
|
||||||
print(" " + k)
|
|
||||||
if manifests[k]["enabled"] and key in manifests[k].get("provide", []):
|
if manifests[k]["enabled"] and key in manifests[k].get("provide", []):
|
||||||
result.append(k)
|
result.append(k)
|
||||||
return result
|
return result
|
||||||
|
|
@ -180,8 +178,6 @@ def cincludes(manifests: dict) -> str:
|
||||||
return " -I" + " -I".join(include_paths)
|
return " -I" + " -I".join(include_paths)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def loadAll(basedirs: list[str], target: dict) -> dict:
|
def loadAll(basedirs: list[str], target: dict) -> dict:
|
||||||
manifests = loadJsons(basedirs)
|
manifests = loadJsons(basedirs)
|
||||||
manifests = filter(manifests, target)
|
manifests = filter(manifests, target)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue