mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-09 08:11:09 +00:00
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
import { createSubsystemLogger } from "../../logging/subsystem.js";
|
|
|
|
const log = createSubsystemLogger("process/supervisor");
|
|
|
|
export function warnProcessSupervisorSpawnFailure(message: string) {
|
|
log.warn(message);
|
|
}
|