Skip to content

Commit 8f932bf

Browse files
committed
logging hardlinking and verifying
1 parent c2badff commit 8f932bf

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

pkgs/nixkube/src/hardlinks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def hardlink_closure(store_paths: set[Path], dst: Path) -> None:
4444
dst: volume_root/nix/store
4545
result: dst/abc-foo/..., dst/def-bar/...
4646
"""
47+
logger.debug("hardlink_closure", paths=store_paths, dst=dst)
4748
try:
4849
dst.mkdir(parents=True, exist_ok=True)
4950

pkgs/nixkube/src/nix/verify.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
async def verify_store_paths(package_paths: set[Path]) -> None:
1414
"""Verify the integrity of all packages and their closures."""
1515
try:
16+
logger.debug("verify_store_paths", paths=package_paths)
1617
await try_captured(
1718
"nix",
1819
"store",

0 commit comments

Comments
 (0)