Skip to content

Commit

Permalink
refactor:adiciona mais logs
Browse files Browse the repository at this point in the history
  • Loading branch information
katiacih committed Aug 4, 2023
1 parent e850e93 commit d9aa535
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9535,7 +9535,7 @@ function runStepsEvaluator(pathList) {
core.info(`\u001b[32;5;6m 🚀 parserJSONtoBase64 -> ${outputBase64}`)

var enc = new Base64()
const evaluationData = enc.decode(process.env.EVALUATION_DATA)
const evaluationData = enc.decode(outputBase64)
core.info(`\u001b[32;5;6m 🚀 JSON.parse(enc.decode( -> ${evaluationData}`)
const evaluationJSON = JSON.parse(evaluationData)
core.info(`\u001b[32;5;6m 🚀 evaluationJSON ${evaluationJSON}`)
Expand Down
2 changes: 1 addition & 1 deletion src/controller/evaluator.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function runStepsEvaluator(pathList) {
core.info(`\u001b[32;5;6m 🚀 parserJSONtoBase64 -> ${outputBase64}`)

var enc = new Base64()
const evaluationData = enc.decode(process.env.EVALUATION_DATA)
const evaluationData = enc.decode(outputBase64)
core.info(`\u001b[32;5;6m 🚀 JSON.parse(enc.decode( -> ${evaluationData}`)
const evaluationJSON = JSON.parse(evaluationData)
core.info(`\u001b[32;5;6m 🚀 evaluationJSON ${evaluationJSON}`)
Expand Down

0 comments on commit d9aa535

Please sign in to comment.