mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
// Runtime logging helpers route plugin runtime logs through OpenClaw verbosity controls.
|
|
import { shouldLogVerbose } from "../../globals.js";
|
|
import { getChildLogger } from "../../logging.js";
|
|
import { normalizeLogLevel } from "../../logging/levels.js";
|
|
import type { PluginRuntime } from "./types.js";
|
|
|
|
function writeRuntimeLog(
|
|
log: (...args: unknown[]) => void,
|
|
message: string,
|
|
meta?: Record<string, unknown>,
|
|
): void {
|
|
if (meta && Object.keys(meta).length > 0) {
|
|
log(meta, message);
|
|
return;
|
|
}
|
|
log(message);
|
|
}
|
|
|
|
/** Creates the plugin runtime logging facade. */
|
|
export function createRuntimeLogging(): PluginRuntime["logging"] {
|
|
return {
|
|
shouldLogVerbose,
|
|
getChildLogger: (bindings, opts) => {
|
|
const logger = getChildLogger(bindings, {
|
|
level: opts?.level ? normalizeLogLevel(opts.level) : undefined,
|
|
});
|
|
return {
|
|
debug: (message, meta) => {
|
|
if (logger.debug) {
|
|
writeRuntimeLog(logger.debug.bind(logger), message, meta);
|
|
}
|
|
},
|
|
info: (message, meta) => writeRuntimeLog(logger.info.bind(logger), message, meta),
|
|
warn: (message, meta) => writeRuntimeLog(logger.warn.bind(logger), message, meta),
|
|
error: (message, meta) => writeRuntimeLog(logger.error.bind(logger), message, meta),
|
|
};
|
|
},
|
|
};
|
|
}
|