In T3 Stack project, I'm getting query logs in console of browser, How can I stop it?

731 Views Asked by At

I have T3 stack project and I'm fetching data using trpc and prisma, but It's showing logs in browsers console.enter image description here

How can I stop this logs?

1

There are 1 best solutions below

2
On BEST ANSWER

You probably have loggerLink enabled in your config, just check for it and pass enabled: () => false if you want to disable it, or just remove it completely.

export const trpc = createTRPCNext<AppRouter>({
  config() {
    return {
      links: [
        loggerLink({
          // Use whatever condition you want here
          enabled: (opts) => false,
        }),
      ],
    };
  },
});