is there a way to turn off prisma logs?
# orm-help
j
is there a way to turn off prisma logs?
h
prisma logs?
you mean queries in yoga?
j
well, the logs that appear when you do
prisma logs
wait..
well when you start the server
all the logs that appear when you query the server
h
you can turn that off in
src/index.js
j
Copy code
debug: false
this line yes?
I just changed it to
false
it was
true
h
yes that line
j
alright! thank you!
h
👌
n
debug: x
is not about the
prisma logs
, it's about the GraphQL Yoga logs.
j
I just realised that trying to solve it 😅 thanks @nilan
n
Why do you want to disable the Docker logs?
j
the
debug: x
?
n
prisma logs
are the Docker logs. Which one do you want to disable now 😄
j
the yoga server ones 😂
it was taking a toll on the log limit in
now.sh
n
ok 😄 those can be disabled like @harmony says.
Then we're all good 💯
j
yes 😄