Skip to content

Commit

Permalink
chore: remove console.log artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
tabcat committed Oct 23, 2024
1 parent e4f6103 commit 4fd5ea8
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/mutate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,6 @@ export async function* mutate(
const buckets: Bucket[] = [];
const isBoundary = createIsBoundary(average, level);

// if (level === 2 && updatee.getBoundary()!.timestamp === 29486) {
// console.log("here");
// }

if (level === 0) {
await populateUpdts(updates, updts, updatee, visitedLevelHead);
}
Expand Down Expand Up @@ -254,9 +250,6 @@ export async function* mutate(
const parentNode = removed.getParentNode();
if (parentNode != null && level < cursor.rootLevel()) {
u = nodeToTuple(parentNode);
if (u.timestamp === 29997) {
console.log("here");
}
}

removesProcessed++;
Expand All @@ -271,10 +264,6 @@ export async function* mutate(
}
}

if (u != null && u.timestamp === 19999) {
console.log("here");
}

u != null && updtsNextLevel.push(u);
}
removedBuckets.splice(0, removesProcessed);
Expand Down

0 comments on commit 4fd5ea8

Please sign in to comment.