Question: Disable request logging on next dev
Answered
gin posted this in #help-forum
ginOP
Is there a option to disable it?
Answered by joulev
https://nextjs.org/docs/app/api-reference/next-config-js/logging
Only in canary
module.exports = {
logging: false,
}Only in canary
9 Replies
ginOP
I mean, it was ok for some of my projects, but I really need it disabled now because it makes it harder for me to read the things I need
who even decided it was a good idea to implement this without a option to disable it
i looked trough the repo and some people are also having that problem so i guess it isn implemented yet
@gin Is there a option to disable it?
https://nextjs.org/docs/app/api-reference/next-config-js/logging
Only in canary
module.exports = {
logging: false,
}Only in canary
Answer
@joulev https://nextjs.org/docs/app/api-reference/next-config-js/logging
js
module.exports = {
logging: false,
}
Only in canary
ginOP
that means it will be implemented in next stable release?
in the future
Will be available starting next 15
ginOP
ok good