enable only prisma:engine-level debugging output
export DEBUG="prisma:engine"
enable only prisma:client-level debugging output
export DEBUG="prisma:client"
enable both prisma-client- and engine-level debugging output
export DEBUG="prisma:client,prisma:engine"
To enable all `prisma` debugging options, set `DEBUG` to `prisma*`:
export DEBUG="prisma*"
On Windows, use `set` instead of `export`:
set DEBUG="prisma*"
To enable _all_ debugging options, set `DEBUG` to `*`:
export DEBUG="*"