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,
}),
],
};
},
});
You probably have
loggerLink
enabled in your config, just check for it and passenabled: () => false
if you want to disable it, or just remove it completely.