---
url: /docs/5.x/reference/diagnostics/kubb-plugin-info.md
description: >-
  The KUBB_PLUGIN_INFO diagnostic carries an informational message a plugin
  reported through ctx.info.
---

# KUBB\_PLUGIN\_INFO: Plugin info

Code: `KUBB_PLUGIN_INFO`
Level: info

A plugin reported an informational message through `ctx.info`. It is advisory and does not fail the run.

## What happened

A plugin surfaced context about what it did. The message carries the plugin name and appears in the run summary and in `kubb generate --reporter json`.

## How to fix it

It is informational, so no action is required.

## For plugin authors

`ctx.info(message)` reports a `KUBB_PLUGIN_INFO`. For a stable code and a source pointer, build an `info` diagnostic and call `Diagnostics.report(...)` instead.

## Example output

```text [Terminal]
[KUBB_PLUGIN_INFO] plugin-fetch: Using fetch as the HTTP client.
  see: https://kubb.dev/docs/5.x/reference/diagnostics/kubb-plugin-info
```

## See also

* [`KUBB_PLUGIN_WARNING`](/docs/5.x/reference/diagnostics/kubb-plugin-warning)
* [Diagnostics reference](/docs/5.x/reference/diagnostics)
