Skip to content

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

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

See also