Lots of tweaks
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { LogEntry } from "../sandbox";
|
||||
import { SysCallMapping, System } from "../system";
|
||||
|
||||
export default function sandboxSyscalls(system: System<any>): SysCallMapping {
|
||||
return {
|
||||
"sandbox.getLogs": async (ctx): Promise<LogEntry[]> => {
|
||||
let allLogs: LogEntry[] = [];
|
||||
for (let plug of system.loadedPlugs.values()) {
|
||||
allLogs = allLogs.concat(plug.sandbox.logBuffer);
|
||||
}
|
||||
allLogs = allLogs.sort((a, b) => a.date - b.date);
|
||||
return allLogs;
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user