clan-cli machines: remove debug prints

This commit is contained in:
lassulus
2024-02-02 17:31:12 +01:00
parent 8cbedfd3b8
commit 62f46751c7

View File

@@ -43,7 +43,6 @@ class Machine:
self._deployment_info = json.loads(
self.build_nix("config.system.clan.deployment.file").read_text()
)
print(f"self_deployment_info: {self.deployment_info}")
return self._deployment_info
@property
@@ -141,7 +140,6 @@ class Machine:
else:
flake = self.flake
log.info(f"building {flake}#{attr}")
outpath = run(nix_build([f"{flake}#{attr}"])).stdout.strip()
self.build_cache[attr] = Path(outpath)
return Path(outpath)