agent.log(message, options?) accepts a string, object, or array. Standard logs appear in Circuit;
debug logs stay local. Delivery is best-effort and never throws into the product path.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Send user-visible and local debug messages.
agent.log(message, options?) accepts a string, object, or array. Standard logs appear in Circuit;
debug logs stay local. Delivery is best-effort and never throws into the product path.
await agent.log("Processing transaction");
await agent.log("Failed to load settings", { error: true });
await agent.log({ wallet: agent.walletAddress }, { debug: true });