mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-18 16:41:45 -06: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,
|
|
};
|