mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-04 13:51:30 +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);
|
|
}
|