import { LogEntry } from "../sandbox.ts"; import { SysCallMapping, System } from "../system.ts"; export default function sandboxSyscalls(system: System): SysCallMapping { return { "sandbox.getLogs": (): LogEntry[] => { let allLogs: LogEntry[] = []; for (const plug of system.loadedPlugs.values()) { allLogs = allLogs.concat(plug.sandbox.logBuffer); } allLogs = allLogs.sort((a, b) => a.date - b.date); return allLogs; }, }; }