removed old logging

This commit is contained in:
Oliver Bryan
2026-01-21 16:45:40 +00:00
parent 504d6c7174
commit 61d264d807

View File

@@ -48,7 +48,6 @@ export async function hasOverlappingSprints(
]; ];
if (excludeSprintId !== undefined) { if (excludeSprintId !== undefined) {
console.log("Excluding sprint ID:", excludeSprintId);
conditions.push(ne(Sprint.id, excludeSprintId)); conditions.push(ne(Sprint.id, excludeSprintId));
} }
@@ -58,7 +57,6 @@ export async function hasOverlappingSprints(
.where(and(...conditions)) .where(and(...conditions))
.limit(1); .limit(1);
console.log(overlapping);
return overlapping.length > 0; return overlapping.length > 0;
} }