Worker logs with history on NuxtHub Admin

Worker logs are now available on NuxtHub Admin, allowing you to filter and analyze historical logs from your deployed Nuxt App.
Worker logs are available from @nuxthub/core >= v0.8.27. In the latest version, Worker Logs are enabled by default.

It is now possible to view, filter and analyze worker logs within the NuxtHub Admin.

The logs page are refactored to be more user-friendly and easier to use. The new UI is easier to read and allows you to view the whole log message. This new logs page is available for both Pages and Workers.

Worker logs

Enable Worker Logs

Worker logs are enabled by default in the latest version of NuxtHub core module (@nuxthub/core >= v0.8.27).

If you are using older versions and you cannot upgrade, you can enable Worker Logs by setting hub.bindings.observability.logs to true in your nuxt.config.ts.
export default defineNuxtConfig({
  hub: {
    bindings: {
      observability: {
        logs: true,
      },
    },
  },
});
Learn more about enabling Worker Logs and additional bindings.

Start with NuxtHub today