ctx.logger (PluginLogger) provides standard log methods, automatically prefixed with your plugin ID in the log output.
console.* — it’s the logging that’s actually captured for support and debugging.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Scoped logging from a background module.
ctx.logger (PluginLogger) provides standard log methods, automatically prefixed with your plugin ID in the log output.
ctx.logger.info("MyPlugin", "Server ready");
ctx.logger.warn("MyPlugin", "Retrying connection...");
ctx.logger.error("MyPlugin", "Failed to fetch fleet data", error);
ctx.logger.debug("MyPlugin", "Polling interval set", { interval });
console.* — it’s the logging that’s actually captured for support and debugging.Was this page helpful?