diff --git a/src/install/PackageManager/runTasks.zig b/src/install/PackageManager/runTasks.zig index 3e4dc40f6c..fa06949b63 100644 --- a/src/install/PackageManager/runTasks.zig +++ b/src/install/PackageManager/runTasks.zig @@ -744,10 +744,6 @@ pub fn runTasks( const committish = git.committish.slice(manager.lockfile.buffers.string_bytes.items); const repo = git.repo.slice(manager.lockfile.buffers.string_bytes.items); - if (comptime Environment.isDebug) { - Output.prettyErrorln("[git-clone] Processing git clone result: repo={s}, committish={s}", .{ repo, committish }); - } - const resolved = try Repository.findCommit( manager.allocator, manager.env, @@ -758,10 +754,6 @@ pub fn runTasks( task.id, ); - if (comptime Environment.isDebug) { - Output.prettyErrorln("[git-clone] Resolved commit: {s}", .{resolved}); - } - const checkout_id = Task.Id.forGitCheckout(repo, resolved); if (manager.hasCreatedNetworkTask(checkout_id, dep.behavior.isRequired())) continue;