'use strict'// This is the main script that runs after the preload// It imports the logger from the preload and logs a messageimport { log } from'./transport-preload.mjs'
log.info('hello from main')
// Wait a bit for the transport to flushsetTimeout(() => {
process.exit(0)
}, 500)