Skip to content

Commit

Permalink
add trace
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmicJack committed Oct 9, 2023
1 parent 7db3c10 commit e78df84
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/gh.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@ function separateArrayWithCommas(arr) {
function areRunnersOnline(runners){
core.info("Here at areRunnersOnline")
core.info(runners)
runners.forEach((runner, index ) => {
core.info(`This runner ${index}, ${runner.name}, will be checked`);
});
if (runners){
if(runners){
core.info("Critical logger")
var result = true
runners.forEach((runner) => {
if (runner.status !== 'online'){
Expand Down

0 comments on commit e78df84

Please sign in to comment.