Skip to content

Commit

Permalink
Remove console.log()
Browse files Browse the repository at this point in the history
  • Loading branch information
styfle committed Oct 26, 2021
1 parent d31615b commit 86097d8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/next/server/web/utils.ts
Expand Up @@ -39,7 +39,6 @@ export function toNodeHeaders(headers?: Headers): NodeHeaders {
for (const [key, value] of headers.entries()) {
result[key] = value
if (key.toLowerCase() === 'set-cookie') {
console.log('the value of the cookie header is' + value)
result[key] = value.split(', ')
}
}
Expand Down

0 comments on commit 86097d8

Please sign in to comment.