How to Replace the Drizzle Logger in Effect TS

What's the effect way to replace the drizzle logger? I see its omitted from the make, wondering if there's already a SQL logger provided. by effect that im not finding or if its expected to make your own? Which i am just going to use the drizzle logger for now for convinence
https://github.com/Effect-TS/effect/blob/6e7a9f11618765ecbf9d834f63a1cface49b43e7/packages/sql-drizzle/src/Pg.ts#L21


export class drizzleLive extends Effect.Service<drizzleLive>()('drizzleLive', {
    effect: Pg.make({ schema }),
}) {
    static Client = this.Default.pipe(
        Layer.provideMerge(DrizzleClient.ClientLive)
    )
    static Test = this.Default.pipe(Layer.provideMerge(PgContainer.ClientLive))
}
Was this page helpful?