Details for "io.failed"

try {
    const chunk = 100;
    for (let i = 0, j = renditionConfigs.length; i < j; i += chunk) {
        const chunkRenditions = renditionConfigs.slice(i, i + chunk);
        await xd.createRenditions(chunkRenditions);
    }
} catch (ex) {
    console.log("Processing failed for", this.artboard.name, ex);
    throw new Error(`${ex}: Failed to export assets for artboard ${this.artboard.name}`);
}

Excepiton is io.failed without any details. And details is what we are looking for. E.g. app can’t access temp folder. Or there is an error in imagemagic module (if it’s still used internally). Because currently io.failed is not really helpful as we can’t reproduce an issue even on the same system configuraion.