Is there a way to supress CHUNKING_SESSION_COOKIE debug logs from output in terminal? #9976
Unanswered
pnalepa-bishopfox
asked this question in
Help
Replies: 1 comment
-
I had the same question. Just looked at the code that logs it out and realised you can set debug to logger: {
debug: (msg) => {
if (msg.includes("CHUNKING_SESSION_COOKIE")) {
return;
}
console.debug(msg);
},
},
debug: false, See the debugging docs for details |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm getting a lot of
CHUNKING_SESSION_COOKIE
logs in the development environment of NextJS app. I'm wondering whether there's a way to hide such logs as they are disturbing the console output a lot and makes debugging more difficult.I would like to get rid of it. Maybe I should not do that?
Beta Was this translation helpful? Give feedback.
All reactions