1
0
Fork 0
mirror of synced 2024-06-27 02:20:35 +12:00

Add trace to automation errors

This commit is contained in:
Rory Powell 2022-03-21 14:25:31 +00:00
parent a9154e1c31
commit 78321a72b1

View file

@ -22,6 +22,7 @@ exports.processEvent = async job => {
console.error(
`${job.data.automation.appId} automation ${job.data.automation._id} was unable to run - ${err}`
)
console.trace(err)
return { err }
}
}