1
0
Fork 0
mirror of synced 2024-09-08 13:41:09 +12:00

Add trace to automation errors

This commit is contained in:
Rory Powell 2022-03-21 14:25:31 +00:00
parent 01fd1f3124
commit 627dd94550

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 }
}
}