Skip to content

Commit 86ac60c

Browse files
committed
Remove debug logging in ts DB
1 parent f9da1ad commit 86ac60c

File tree

2 files changed

+899
-967
lines changed

2 files changed

+899
-967
lines changed

packages/db/src/collection/subscription.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { ensureIndexForExpression } from "../indexes/auto-index.js"
22
import { and, gt, lt } from "../query/index.js"
3+
import { Value } from "../query/ir.js"
34
import {
45
createFilterFunctionFromExpression,
56
createFilteredCallback,
67
} from "./change-events.js"
7-
import { Value, type BasicExpression, type OrderBy } from "../query/ir.js"
8+
import type { BasicExpression, OrderBy } from "../query/ir.js"
89
import type { BaseIndex } from "../indexes/base-index.js"
910
import type { ChangeMessage } from "../types.js"
1011
import type { CollectionImpl } from "./index.js"
@@ -153,7 +154,6 @@ export class CollectionSubscription {
153154
limit,
154155
minValue,
155156
}: RequestLimitedSnapshotOptions) {
156-
console.log("in requestLimitedSnapshot")
157157
if (!limit) throw new Error(`limit is required`)
158158

159159
if (!this.orderByIndex) {

0 commit comments

Comments
 (0)