Files
openclaw/src/cli/plugins-json-logger.ts
2026-06-20 23:37:00 +08:00

9 lines
216 B
TypeScript

import type { PluginLogger } from "../plugins/types.js";
export const quietPluginJsonLogger: PluginLogger = {
debug: () => undefined,
info: () => undefined,
warn: () => undefined,
error: () => undefined,
};