Remove remaining debug logs from git clone processing

This commit is contained in:
Claude
2025-08-14 06:15:32 +02:00
parent 8a7ec11d6b
commit 97ffded458

View File

@@ -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;