authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-07-01 14:34:48-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-07-01 14:34:48-07:00
log18a568ca576d5e4f8051c5e337563a0c8cc52b04
tree38e8c139b264bd7d75716625471f91f444bfaacb
parentdc5feb49ebfee6e2af6f76dd45466760aac9f795

Maker: add log for fetching lazy dependency


1 files changed, 1 insertions(+), 0 deletions(-)

lib/compiler/Maker.zig+1
...@@ -1298,6 +1298,7 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig {...@@ -1298,6 +1298,7 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig {
1298 any_errors = true;1298 any_errors = true;
1299 continue;1299 continue;
1300 }1300 }
1301 log.info("fetching lazy dependency {s}", .{hash});
1301 try unlazy_set.put(arena, .fromSlice(hash), {});1302 try unlazy_set.put(arena, .fromSlice(hash), {});
1302 }1303 }
1303 if (any_errors) return error.FailedButCacheIntact;1304 if (any_errors) return error.FailedButCacheIntact;