惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
博客园 - 司徒正美
罗磊的独立博客
D
Docker
Last Week in AI
Last Week in AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
V
V2EX
Google DeepMind News
Google DeepMind News
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog RSS Feed
A
About on SuperTechFans
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
P
Proofpoint News Feed

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(discord): log component registry error details · open...
100menotu001 · 2026-05-22 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -22,6 +22,7 @@ Docs: https://docs.openclaw.ai

2222
2323

- Infra/json: retry transient `File changed during read` races while loading JSON state so config and state reads recover instead of failing the turn. (#84285)

2424

- Providers/Ollama: resolve configured Ollama Cloud `OLLAMA_API_KEY` markers to the real discovery key so cloud provider entries keep authenticated model catalog access. (#85037)

25+

- Discord: keep persistent component registry fallback warnings actionable by forwarding structured error and cause metadata through the runtime logger. Fixes #84185. (#84190) Thanks @100menotu001.

2526

- Gateway/sessions: preserve compatible session auth profile overrides when switching models within the same provider, including provider-auth aliases. Fixes #81837. (#81886) Thanks @TurboTheTurtle.

2627

- Gateway/status: surface inbound delivery telemetry counters and transport-liveness warnings in `openclaw status --all`. Fixes #49577. (#72724)

2728

- Docker: prune package-excluded plugin source workspaces and dependency closures so runtime images do not keep packages for plugins that were not opted in.

Original file line numberDiff line numberDiff line change

@@ -48,12 +48,60 @@ function reportPersistentComponentRegistryError(error: unknown): void {

4848

try {

4949

getOptionalDiscordRuntime()

5050

?.logging.getChildLogger({ plugin: "discord", feature: "component-registry-state" })

51-

.warn("Discord persistent component registry state failed", { error: String(error) });

51+

.warn("Discord persistent component registry state failed", formatRegistryError(error));

5252

} catch {

5353

// Best effort only: persistent state must never break Discord interactions.

5454

}

5555

}

5656
57+

function formatRegistryError(error: unknown): Record<string, unknown> {

58+

if (!(error instanceof Error)) {

59+

return { error: formatRegistryErrorValue(error) };

60+

}

61+

const details: Record<string, unknown> = {

62+

error: String(error),

63+

errorName: error.name,

64+

errorMessage: error.message,

65+

};

66+

if (error.stack) {

67+

details.errorStack = error.stack;

68+

}

69+

const cause = (error as { cause?: unknown }).cause;

70+

if (cause instanceof Error) {

71+

details.errorCause = String(cause);

72+

details.errorCauseName = cause.name;

73+

details.errorCauseMessage = cause.message;

74+

if (cause.stack) {

75+

details.errorCauseStack = cause.stack;

76+

}

77+

} else if (cause !== undefined) {

78+

details.errorCause = formatRegistryErrorValue(cause);

79+

}

80+

return details;

81+

}

82+
83+

function formatRegistryErrorValue(value: unknown): string {

84+

if (typeof value === "string") {

85+

return value;

86+

}

87+

if (

88+

typeof value === "number" ||

89+

typeof value === "boolean" ||

90+

typeof value === "bigint" ||

91+

typeof value === "symbol"

92+

) {

93+

return String(value);

94+

}

95+

if (value === null) {

96+

return "null";

97+

}

98+

try {

99+

return JSON.stringify(value) ?? Object.prototype.toString.call(value);

100+

} catch {

101+

return Object.prototype.toString.call(value);

102+

}

103+

}

104+
57105

function disablePersistentComponentRegistry(error: unknown): void {

58106

persistentRegistryDisabled = true;

59107

persistentComponentStore = undefined;

Original file line numberDiff line numberDiff line change

@@ -354,11 +354,14 @@ describe("discord component registry", () => {

354354
355355

it("falls back to the in-memory registry when persistent state cannot open", async () => {

356356

const warn = vi.fn();

357+

const cause = new TypeError("disk busy");

357358

const { setDiscordRuntime } = await import("./runtime.js");

358359

setDiscordRuntime({

359360

state: {

360361

openKeyedStore: vi.fn(() => {

361-

throw new Error("sqlite unavailable");

362+

const error = new Error("sqlite unavailable") as Error & { cause?: unknown };

363+

error.cause = cause;

364+

throw error;

362365

}),

363366

},

364367

logging: { getChildLogger: () => ({ warn }) },

@@ -375,6 +378,16 @@ describe("discord component registry", () => {

375378

expect(fallbackEntry?.label).toBe("Fallback");

376379

expect(typeof fallbackEntry?.createdAt).toBe("number");

377380

expect(typeof fallbackEntry?.expiresAt).toBe("number");

378-

expect(warn).toHaveBeenCalled();

381+

expect(warn).toHaveBeenCalledWith(

382+

"Discord persistent component registry state failed",

383+

expect.objectContaining({

384+

error: "Error: sqlite unavailable",

385+

errorName: "Error",

386+

errorMessage: "sqlite unavailable",

387+

errorCause: "TypeError: disk busy",

388+

errorCauseName: "TypeError",

389+

errorCauseMessage: "disk busy",

390+

}),

391+

);

379392

});

380393

});

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,55 @@

1+

import { beforeEach, describe, expect, it, vi } from "vitest";

2+
3+

const loggingMocks = vi.hoisted(() => {

4+

const childLogger = {

5+

debug: vi.fn(),

6+

info: vi.fn(),

7+

warn: vi.fn(),

8+

error: vi.fn(),

9+

};

10+

return {

11+

childLogger,

12+

getChildLogger: vi.fn(() => childLogger),

13+

};

14+

});

15+
16+

vi.mock("../../globals.js", () => ({

17+

shouldLogVerbose: vi.fn(() => false),

18+

}));

19+
20+

vi.mock("../../logging.js", () => ({

21+

getChildLogger: loggingMocks.getChildLogger,

22+

}));

23+
24+

let createRuntimeLogging: typeof import("./runtime-logging.js").createRuntimeLogging;

25+
26+

beforeEach(async () => {

27+

vi.clearAllMocks();

28+

loggingMocks.getChildLogger.mockReturnValue(loggingMocks.childLogger);

29+

({ createRuntimeLogging } = await import("./runtime-logging.js"));

30+

});

31+
32+

describe("createRuntimeLogging", () => {

33+

it("forwards structured metadata to child loggers", () => {

34+

const logging = createRuntimeLogging();

35+

const logger = logging.getChildLogger({ plugin: "discord" }, { level: "warn" });

36+

const meta = {

37+

errorName: "Error",

38+

errorCauseName: "TypeError",

39+

};

40+
41+

logger.debug?.("debug details", meta);

42+

logger.info("info details", meta);

43+

logger.warn("warn details", meta);

44+

logger.error("error details", meta);

45+
46+

expect(loggingMocks.getChildLogger).toHaveBeenCalledWith(

47+

{ plugin: "discord" },

48+

{ level: "warn" },

49+

);

50+

expect(loggingMocks.childLogger.debug).toHaveBeenCalledWith(meta, "debug details");

51+

expect(loggingMocks.childLogger.info).toHaveBeenCalledWith(meta, "info details");

52+

expect(loggingMocks.childLogger.warn).toHaveBeenCalledWith(meta, "warn details");

53+

expect(loggingMocks.childLogger.error).toHaveBeenCalledWith(meta, "error details");

54+

});

55+

});

Original file line numberDiff line numberDiff line change

@@ -3,6 +3,18 @@ import { getChildLogger } from "../../logging.js";

33

import { normalizeLogLevel } from "../../logging/levels.js";

44

import type { PluginRuntime } from "./types.js";

55
6+

function writeRuntimeLog(

7+

log: (...args: unknown[]) => void,

8+

message: string,

9+

meta?: Record<string, unknown>,

10+

): void {

11+

if (meta && Object.keys(meta).length > 0) {

12+

log(meta, message);

13+

return;

14+

}

15+

log(message);

16+

}

17+
618

export function createRuntimeLogging(): PluginRuntime["logging"] {

719

return {

820

shouldLogVerbose,

@@ -11,10 +23,14 @@ export function createRuntimeLogging(): PluginRuntime["logging"] {

1123

level: opts?.level ? normalizeLogLevel(opts.level) : undefined,

1224

});

1325

return {

14-

debug: (message) => logger.debug?.(message),

15-

info: (message) => logger.info(message),

16-

warn: (message) => logger.warn(message),

17-

error: (message) => logger.error(message),

26+

debug: (message, meta) => {

27+

if (logger.debug) {

28+

writeRuntimeLog(logger.debug.bind(logger), message, meta);

29+

}

30+

},

31+

info: (message, meta) => writeRuntimeLog(logger.info.bind(logger), message, meta),

32+

warn: (message, meta) => writeRuntimeLog(logger.warn.bind(logger), message, meta),

33+

error: (message, meta) => writeRuntimeLog(logger.error.bind(logger), message, meta),

1834

};

1935

},

2036

};