async function getLogs()

in scripts/deploylog.js [16:23]


async function getLogs() {
    const atoms = await listDirectories(path.resolve('src/atoms'));
    for (let atom of atoms) {
        const logPath = path.join('atoms', config.path, atom, logFileName)
        const log = await getObject(bucketName, logPath)
        console.log(log.Body.toString())
    }
}