fix(outputs): update output format in log

This commit is contained in:
Federico Grandi
2020-12-12 16:25:26 +01:00
parent 07e991cfab
commit bc31c50167
2 changed files with 9 additions and 5 deletions

View File

@@ -325,7 +325,9 @@ function remove({
}
function logOutputs() {
startGroup('Outputs:')
info(JSON.stringify(outputs))
startGroup('Outputs')
for (const key in outputs) {
info(`${key}: ${outputs[key]}`)
}
endGroup()
}