在T3 Stack项目中,我在浏览器的控制台中获取查询日志,我该如何停止它?

huangapple go评论57阅读模式
英文:

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

问题

我有一个T3堆栈项目,我正在使用trpc和prisma获取数据,但它在浏览器控制台中显示日志。我该如何停止这些日志?

英文:

I have T3 stack project and I'm fetching data using trpc and prisma, but It's showing logs in browsers console.在T3 Stack项目中,我在浏览器的控制台中获取查询日志,我该如何停止它?

How can I stop this logs?

答案1

得分: 0

你可能在配置中启用了loggerLink,只需检查并传递enabled: () => false来禁用它,或者完全删除它。

export const trpc = createTRPCNext<AppRouter>({
  config() {
    return {
      links: [
        loggerLink({
          // 在这里使用任何你想要的条件
          enabled: (opts) => false,
        }),
      ],
    };
  },
});
英文:

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

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

huangapple
  • 本文由 发表于 2023年7月27日 16:28:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/76777867.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定