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 {
12981298 any_errors = true;
12991299 continue;
13001300 }
1301 log.info("fetching lazy dependency {s}", .{hash});
13011302 try unlazy_set.put(arena, .fromSlice(hash), {});
13021303 }
13031304 if (any_errors) return error.FailedButCacheIntact;