export function runInBackground( operation: Promise, label: string, ) { void operation.catch((error) => { console.error( `[KOC LOOP] ${label} failed`, error instanceof Error ? error.message : error, ); }); }