diff --git a/packages/effect-fc/src/Query.ts b/packages/effect-fc/src/Query.ts index 2bdfac7..7874fbf 100644 --- a/packages/effect-fc/src/Query.ts +++ b/packages/effect-fc/src/Query.ts @@ -1,4 +1,4 @@ -import { type Cause, Console, type Context, DateTime, type Duration, Effect, Exit, Fiber, HashMap, identity, Option, Pipeable, Predicate, type Scope, Stream, Subscribable, SubscriptionRef } from "effect" +import { type Cause, type Context, DateTime, type Duration, Effect, Exit, Fiber, HashMap, identity, Option, Pipeable, Predicate, type Scope, Stream, Subscribable, SubscriptionRef } from "effect" import * as QueryClient from "./QueryClient.js" import * as Result from "./Result.js" @@ -204,9 +204,7 @@ extends Pipeable.Class() implements Query { get changes() { return Stream.make(entry.result as Result.Result) }, })), ), - onNone: () => this.start(key, initial).pipe( - Effect.tap(Console.log("Cache missed")) - ), + onNone: () => this.start(key, initial), })) }