UNPKG

nsyslog

Version:

Modular new generation log agent. Reads, transform, aggregate, correlate and send logs from sources to destinations

15 lines (13 loc) 219 B
async function crashLoop() { let i=0; let conn = false; while(!conn) { conn = await new Promise(ok=>{ setImmediate(async ()=>{ await crashLoop(); ok(false); }); }); } } crashLoop();