openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
11 lines (10 loc) • 487 B
JavaScript
import { t as createSubsystemLogger } from "./subsystem-BzXSmsuh.js";
//#region src/process/supervisor/supervisor-log.runtime.ts
/** Runtime logging boundary for lazy supervisor paths and focused test mocks. */
const log = createSubsystemLogger("process/supervisor");
/** Report spawn failures without importing the full logging subsystem in tests. */
function warnProcessSupervisorSpawnFailure(message) {
log.warn(message);
}
//#endregion
export { warnProcessSupervisorSpawnFailure };