How can I turn off these messages?
# orm-help
j
How can I turn off these messages?
j
You probably have logging enabled when you set up the prisma client https://www.prisma.io/docs/concepts/components/prisma-client/working-with-prismaclient/logging#log-to-stdout to remove logging set it to false/empty array
🙌 1
n
Hey Julian 👋 It seems that you have logging enabled and you want to turn it off. Here’s how you could configure logging: Reference You might want to remove log key while instantiating
PrismaClient
Copy code
const prisma = new PrismaClient({
  log: ['query', 'info', 'warn', 'error'],
})
And just have
Copy code
const prisma = new PrismaClient()
j
got it thanks