Next.js Discord

Discord Forum

Can no longer see cache HIT or MISS in terminal in Next 14

Unanswered
Spectacled bear posted this in #help-forum
Open in Discord
Spectacled bearOP
Hey!
I have just upgraded from Next 13.4 to 14, and I no longer see the cache messages in the terminal. It was really useful, telling if cache was hit or missed and how much time it took. Does anyone have any idea how to get it back on?

2 Replies

White-crowned Pigeon
Hi 👋
Add this in your next config

  logging: {
    fetches: {
      fullUrl: true,
    },
  },