Vercel not showing log

why is vercel not showing any logs, after paystack sends webhook to vercel

If you’re asking about runtime logs, those should appear in the dashboard after a function runs. If you’re still not seeing any logs at all, it might mean the webhook isn’t reaching your Vercel function. Double-check your Paystack webhook configuration and URL. Keep in mind that the Hobby plan only retains 1 hour of logs, and the Pro plan keeps 1 day of logs, so you’ll need to check within that timeframe.

Some things to try if the logs still don’t appear:

  • Make sure your webhook endpoint is actually being called (check Paystack’s webhook delivery logs)
  • Verify the webhook URL is correct and pointing to your Vercel deployment
  • Check if your function is throwing errors before it can log anything
  • Ensure you’re using console.log() statements in your webhook handler

Please give that a try and let me know if it starts working for you

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.