mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-29 00:53:34 +00:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import type { PluginLogger } from "../plugins/types.js";
|
|
|
|
export const quietPluginJsonLogger: PluginLogger = {
|
|
debug: () => undefined,
|
|
info: () => undefined,
|
|
warn: () => undefined,
|
|
error: () => undefined,
|
|
};
|