From 18a568ca576d5e4f8051c5e337563a0c8cc52b04 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 1 Jul 2026 14:34:48 -0700 Subject: [PATCH] Maker: add log for fetching lazy dependency --- lib/compiler/Maker.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/compiler/Maker.zig b/lib/compiler/Maker.zig index ee3c189a28173d70378a15c05f513df057375583..aa117ae8b768050e459e0b9de098edc9150e9612 100644 --- a/lib/compiler/Maker.zig +++ b/lib/compiler/Maker.zig @@ -1298,6 +1298,7 @@ fn configure(graph: *Graph, options: ConfigureOptions) !ScannedConfig { any_errors = true; continue; } + log.info("fetching lazy dependency {s}", .{hash}); try unlazy_set.put(arena, .fromSlice(hash), {}); } if (any_errors) return error.FailedButCacheIntact; -- 2.54.0