1
0
Fork 0
mirror of synced 2024-08-08 22:58:24 +12:00

Merge pull request #4979 from Budibase/automation-trace

Add trace to automation errors
This commit is contained in:
Rory Powell 2022-03-21 14:27:46 +00:00 committed by GitHub
commit 647795350c

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