János
János

Reputation: 35100

Why Vercel function log does not show console.log?

I see this for server method generatePostAnimation

enter image description here

basically no log lines.

I have many console.log like this:

console.log('Képek betöltve')

What do I miss?

https://vercel.com/support/articles/where-are-vercel-logs

Upvotes: 15

Views: 8952

Answers (2)

haider ali
haider ali

Reputation: 37

I think that the vercel only shows build logs like:

  1. The version of the build tools
  2. Warnings or errors encountered during the build process
  3. Details about the files and dependencies that were installed, compiled, or built during the deployment

Upvotes: -1

Joel H
Joel H

Reputation: 990

You seem to have a failed request — check the errors tab to see if there's something there. In any case, you're not seeing your console.log outputs since no request was registered (likely due to an error ^).

Upvotes: 0

Related Questions