always log full error

This commit is contained in:
Robert Brignull 2020-08-05 09:40:28 +01:00
parent 42235cc048
commit 8127c47bbd
12 changed files with 14 additions and 4 deletions

1
lib/finalize-db.js generated
View file

@ -103,6 +103,7 @@ async function run() {
}
catch (error) {
core.setFailed(error.message);
console.log(error);
await sendStatusReport(startedAt, queriesStats, uploadStats, error);
return;
}