Skip to content

Commit

Permalink
🚨 no-consoleを無視するように
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-20 committed Oct 30, 2023
1 parent ce491a3 commit 30e00ae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/web/src/features/database/prismaClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export const prisma = new PrismaClient({
});

prisma.$on('query', (e) => {
// eslint-disable-next-line no-console
console.log(
`Query: ${e.query}\nParams: ${e.params}\nDuration: ${e.duration}ms`,
);
Expand Down

0 comments on commit 30e00ae

Please sign in to comment.