Hello I am using new prisma and I don't understand...
# orm-help
s
Hello I am using new prisma and I don't understand my terminal write to this message "prisma:query". I did not find a way the message to close and my all query show the message.
n
Hey Sunal 👋 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()
🙌 1
s
Oww thank you I see but my bad . 🙂 thank you so much