When running prisma locally, I dont see errors log...
# orm-help
j
When running prisma locally, I dont see errors logged to the terminal via this command
"dev": "ts-node-dev -r dotenv/config --tree-kill --transpileOnly --no-notify --debug --respawn src/main.ts"
Is there a way to log more verbosely?
r
Hey @James Fox 👋 You can use DEBUG as follows:
Copy code
"dev": "DEBUG=* ts-node-dev -r dotenv/config --tree-kill --transpileOnly --no-notify --debug --respawn src/main.ts"
🙏 1