40 lines
688 B
TypeScript
40 lines
688 B
TypeScript
import { PrismaClient } from 'db'
|
|
import path from 'path'
|
|
const prisma = new PrismaClient({
|
|
log: [
|
|
{
|
|
emit: 'event',
|
|
level: 'query',
|
|
},
|
|
{
|
|
emit: 'stdout',
|
|
level: 'error',
|
|
},
|
|
{
|
|
emit: 'stdout',
|
|
level: 'info',
|
|
},
|
|
{
|
|
emit: 'stdout',
|
|
level: 'warn',
|
|
},
|
|
],
|
|
})
|
|
|
|
require('dotenv').config({
|
|
path: path.join(
|
|
__dirname,
|
|
process.env.NODE_ENV === 'production' ? '.env.production' : '.env.local'
|
|
),
|
|
})
|
|
|
|
const main = async () => {
|
|
prisma.$on('query', (e) => {
|
|
console.log('Query: ' + e.query)
|
|
console.log('Params: ' + e.params)
|
|
console.log('Duration: ' + e.duration + 'ms')
|
|
})
|
|
}
|
|
|
|
main().then()
|